summaryrefslogtreecommitdiff
path: root/pango/pango-ot-info.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2008-11-19 19:52:22 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2008-11-19 19:52:22 +0000
commit76aedda6e9a42dc7074c4addeed2843f877080ed (patch)
tree9fe224a7ffb36ad356c9ee3825641c61010c5223 /pango/pango-ot-info.c
parent8b3de1bab2b5c062340dd5495d0b4ad2f48c92c9 (diff)
downloadpango-76aedda6e9a42dc7074c4addeed2843f877080ed.tar.gz
Write error code in capital hex.
2008-11-19 Behdad Esfahbod <behdad@gnome.org> * pango/pango-ot-info.c (pango_ot_info_get_gdef), (pango_ot_info_get_gsub), (pango_ot_info_get_gpos): Write error code in capital hex. svn path=/trunk/; revision=2737
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);
}
}