mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-08 13:50:07 +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:
parent
96acb49eb1
commit
ca328615c8
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user