summaryrefslogtreecommitdiff
path: root/pango/pango-ot-info.c
diff options
context:
space:
mode:
Diffstat (limited to 'pango/pango-ot-info.c')
-rw-r--r--pango/pango-ot-info.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pango/pango-ot-info.c b/pango/pango-ot-info.c
index eb739339..55dc86ad 100644
--- a/pango/pango-ot-info.c
+++ b/pango/pango-ot-info.c
@@ -298,7 +298,7 @@ pango_ot_info_get_gdef (PangoOTInfo *info)
error = HB_Load_GDEF_Table (info->face, &info->gdef);
if (error && error != HB_Err_Not_Covered)
- g_warning ("Error loading GDEF table 0x%04x", error);
+ g_warning ("Error loading GDEF table 0x%04X", error);
if (!info->gdef)
error = HB_New_GDEF_Table (&info->gdef);
@@ -328,7 +328,7 @@ pango_ot_info_get_gsub (PangoOTInfo *info)
error = HB_Load_GSUB_Table (info->face, &info->gsub, gdef);
if (error && error != HB_Err_Not_Covered)
- g_warning ("Error loading GSUB table 0x%04x", error);
+ g_warning ("Error loading GSUB table 0x%04X", error);
}
}
@@ -352,7 +352,7 @@ pango_ot_info_get_gpos (PangoOTInfo *info)
error = HB_Load_GPOS_Table (info->face, &info->gpos, gdef);
if (error && error != HB_Err_Not_Covered)
- g_warning ("Error loading GPOS table 0x%04x", error);
+ g_warning ("Error loading GPOS table 0x%04X", error);
}
}