Skip to content

Commit 96c2f63

Browse files
committed
Add missing % char from format specifier in tlog()
- In training/ango_font_info.cpp
1 parent 8dab597 commit 96c2f63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

training/pango_font_info.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ bool FontUtils::IsAvailableFont(const char* input_query_desc,
534534
pango_font_description_get_weight(selected_desc));
535535

536536
char* selected_desc_str = pango_font_description_to_string(selected_desc);
537-
tlog(2, "query_desc: '%s' Selected: 's'\n", query_desc.c_str(),
537+
tlog(2, "query_desc: '%s' Selected: '%s'\n", query_desc.c_str(),
538538
selected_desc_str);
539539
if (!equal && best_match != NULL) {
540540
*best_match = selected_desc_str;

0 commit comments

Comments
 (0)