Use LOG instead of DLOG (next branch feature only)

next
Michael Stapelberg 2010-01-07 19:24:46 +01:00
parent d1a0e930a8
commit 1dcb4a39fd
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}