mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 23:16:14 +01:00
Fix signedness warning in gio/gdesktopappinfo.c:g_app_info_get_all()
gio/gdesktopappinfo.c: In function ‘g_app_info_get_all’: gio/gdesktopappinfo.c:4597:17: error: comparison of integer expressions of different signedness: ‘int’ and ‘guint’ {aka ‘unsigned int’} 4597 | for (i = 0; i < desktop_file_dirs->len; i++) | ^
This commit is contained in:
parent
9567665524
commit
ae1eebb2e9
@ -4620,7 +4620,7 @@ g_app_info_get_all (void)
|
||||
GHashTable *apps;
|
||||
GHashTableIter iter;
|
||||
gpointer value;
|
||||
int i;
|
||||
guint i;
|
||||
GList *infos;
|
||||
|
||||
apps = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user