Fix signedness warning in gio/gdesktopappinfo.c:g_desktop_app_info_get_implementations()

gio/gdesktopappinfo.c: In function ‘g_desktop_app_info_get_implementations’:
gio/gdesktopappinfo.c:4451:17: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘guint’ {aka ‘unsigned int’}
 4451 |   for (i = 0; i < desktop_file_dirs->len; i++)
      |                 ^
This commit is contained in:
Emmanuel Fleury 2020-11-17 11:09:07 +01:00 committed by Philip Withnall
parent 554b1ff0e2
commit 6bce33300a

View File

@ -4477,7 +4477,7 @@ g_desktop_app_info_get_implementations (const gchar *interface)
{
GList *result = NULL;
GList **ptr;
gint i;
guint i;
desktop_file_dirs_lock ();