mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 23:16:14 +01:00
Fix signedness warning in gio/tests/mimeapps.c
gio/tests/mimeapps.c: In function ‘strv_equal’: gio/tests/mimeapps.c:31:32: error: comparison of integer expressions of different signedness: ‘guint’ {aka ‘unsigned int’} and ‘gint’ {aka ‘int’} 31 | res = g_strv_length (strv) == count; | ^~
This commit is contained in:
parent
e7aec308e9
commit
c3c1f6c4b9
@ -5,7 +5,7 @@
|
|||||||
static gboolean
|
static gboolean
|
||||||
strv_equal (gchar **strv, ...)
|
strv_equal (gchar **strv, ...)
|
||||||
{
|
{
|
||||||
gint count;
|
gsize count;
|
||||||
va_list list;
|
va_list list;
|
||||||
const gchar *str;
|
const gchar *str;
|
||||||
gboolean res;
|
gboolean res;
|
||||||
|
Loading…
Reference in New Issue
Block a user