diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-07-18 14:49:42 -0700 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-07-18 14:49:42 -0700 |
commit | be4d29953196744ab87b7e27be21a60131b109d1 (patch) | |
tree | a026bcd187198ee738c8362b820a5ece839cb242 /tests/test-shape.c | |
parent | c6143ddf22f5094325adbc974fcd11420dfdb27c (diff) | |
download | pango-be4d29953196744ab87b7e27be21a60131b109d1.tar.gz |
test-shape: Print glyph ids in decimal
Diffstat (limited to 'tests/test-shape.c')
-rw-r--r-- | tests/test-shape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-shape.c b/tests/test-shape.c index babfe98f..acce5a03 100644 --- a/tests/test-shape.c +++ b/tests/test-shape.c @@ -171,7 +171,7 @@ test_file (const gchar *filename, GString *string) p1 = g_utf8_next_char (p); } append_text (s1, p, p1 - p); - g_string_append_printf (s2, "[%x]", gi->glyph); + g_string_append_printf (s2, "[%d]", gi->glyph); g_string_append_printf (s4, "%d ", gi->geometry.width); g_string_append_printf (s7, "%d,%d ", gi->geometry.x_offset, gi->geometry.y_offset); if (gi->attr.is_cluster_start) |