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:
Emmanuel Fleury 2020-11-19 20:45:14 +01:00
parent e7aec308e9
commit c3c1f6c4b9

View File

@ -5,7 +5,7 @@
static gboolean
strv_equal (gchar **strv, ...)
{
gint count;
gsize count;
va_list list;
const gchar *str;
gboolean res;