[util] s/%d/%u/ when printing glyph ids and clusters
This commit is contained in:
parent
b95324cdd2
commit
5857720cd3
|
@ -650,12 +650,12 @@ format_options_t::serialize (hb_buffer_t *buffer,
|
||||||
if (!FT_Get_Glyph_Name (ft_face, info->codepoint, glyph_name, sizeof (glyph_name)))
|
if (!FT_Get_Glyph_Name (ft_face, info->codepoint, glyph_name, sizeof (glyph_name)))
|
||||||
g_string_append_printf (gs, "%s", glyph_name);
|
g_string_append_printf (gs, "%s", glyph_name);
|
||||||
else
|
else
|
||||||
g_string_append_printf (gs, "gid%d", info->codepoint);
|
g_string_append_printf (gs, "gid%u", info->codepoint);
|
||||||
} else
|
} else
|
||||||
g_string_append_printf (gs, "%d", info->codepoint);
|
g_string_append_printf (gs, "%u", info->codepoint);
|
||||||
|
|
||||||
if (show_clusters)
|
if (show_clusters)
|
||||||
g_string_append_printf (gs, "=%d", info->cluster);
|
g_string_append_printf (gs, "=%u", info->cluster);
|
||||||
|
|
||||||
if (show_positions && (pos->x_offset || pos->y_offset)) {
|
if (show_positions && (pos->x_offset || pos->y_offset)) {
|
||||||
g_string_append_c (gs, '@');
|
g_string_append_c (gs, '@');
|
||||||
|
|
Loading…
Reference in New Issue