commit | 5fbc952524ac8840f007dc0136823a4ab6e25f70 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <[email protected]> | Mon Jul 29 14:34:40 2013 -0400 |
committer | Behdad Esfahbod <[email protected]> | Mon Jul 29 14:34:40 2013 -0400 |
tree | 409f2fa1b3e43983781a7b3de4596bddff47fa1c | |
parent | 6fadd9dd7cc220f131c29946285831635afc8044 [diff] [blame] |
Fix glyph name printing in hb-ot-shape-closure
diff --git a/util/hb-ot-shape-closure.cc b/util/hb-ot-shape-closure.cc index 7c81a7d..03de7e6 100644 --- a/util/hb-ot-shape-closure.cc +++ b/util/hb-ot-shape-closure.cc
@@ -82,7 +82,7 @@ if (show_glyph_names) { char glyph_name[64]; - hb_font_get_glyph_name (font, i, glyph_name, sizeof (glyph_name)); + hb_font_glyph_to_string (font, i, glyph_name, sizeof (glyph_name)); printf ("%s", glyph_name); } else printf ("%u", i);