mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-24 10:57:53 +02:00
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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user