mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
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:
parent
554b1ff0e2
commit
6bce33300a
@ -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 ();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user