[HarfBuzz] harfbuzz: Branch 'master'
Behdad Esfahbod
behdad at kemper.freedesktop.org
Tue Jan 15 14:49:06 PST 2008
src/harfbuzz-dump-main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 0b4d6cd2ca413d618305ce1319f5ca216e65c624
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Tue Jan 15 17:49:04 2008 -0500
Improve error message
diff --git a/src/harfbuzz-dump-main.c b/src/harfbuzz-dump-main.c
index 97a517f..3d294da 100644
--- a/src/harfbuzz-dump-main.c
+++ b/src/harfbuzz-dump-main.c
@@ -206,7 +206,7 @@ main (int argc, char **argv)
croak ("HB_Done_GSUB_Table", error);
}
else if (error != HB_Err_Not_Covered)
- fprintf (stderr, "HB_Load_GSUB_Table %x\n", error);
+ fprintf (stderr, "HB_Load_GSUB_Table: error 0x%x\n", error);
if (!(error = HB_Load_GPOS_Table (font, &gpos, NULL)))
{
@@ -216,7 +216,7 @@ main (int argc, char **argv)
croak ("HB_Done_GPOS_Table", error);
}
else if (error != HB_Err_Not_Covered)
- fprintf (stderr, "HB_Load_GPOS_Table %x\n", error);
+ fprintf (stderr, "HB_Load_GPOS_Table: error 0x%x\n", error);
printf ("</OpenType>\n");
More information about the HarfBuzz
mailing list