gvariant: Use gsize rather than gint for array lengths

This introduces no functional changes.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2018-12-04 12:54:39 +00:00
parent 96acb49eb1
commit ca328615c8

View File

@ -1533,7 +1533,7 @@ unicode_unescape (const gchar *src,
gint *src_ofs, gint *src_ofs,
gchar *dest, gchar *dest,
gint *dest_ofs, gint *dest_ofs,
gint length, gsize length,
SourceRef *ref, SourceRef *ref,
GError **error) GError **error)
{ {
@ -1553,7 +1553,7 @@ unicode_unescape (const gchar *src,
{ {
parser_set_error (error, ref, NULL, parser_set_error (error, ref, NULL,
G_VARIANT_PARSE_ERROR_INVALID_CHARACTER, G_VARIANT_PARSE_ERROR_INVALID_CHARACTER,
"invalid %d-character unicode escape", length); "invalid %" G_GSIZE_FORMAT "-character unicode escape", length);
return FALSE; return FALSE;
} }