]> git.sur5r.net Git - i3/i3/commitdiff
Use LOG instead of DLOG (next branch feature only)
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 7 Jan 2010 18:24:46 +0000 (19:24 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 7 Jan 2010 18:25:01 +0000 (19:25 +0100)
src/xcb.c

index 98b6bde52843bb0642b1b5c03ccf441d25ff567f..ee75ca25df3911dae05cde8e264f123f05c36ec2 100644 (file)
--- a/src/xcb.c
+++ b/src/xcb.c
@@ -359,7 +359,7 @@ int predict_text_width(xcb_connection_t *conn, const char *font_pattern, char *t
 
         /* If no per-char info is available for this font, we use the default */
         if (xcb_query_font_char_infos_length(font_info) == 0) {
-                DLOG("Falling back on default char_width of %d pixels\n", font_info->max_bounds.character_width);
+                LOG("Falling back on default char_width of %d pixels\n", font_info->max_bounds.character_width);
                 return (font_info->max_bounds.character_width * length);
         }