mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-31 04:43:06 +02: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 *result = NULL;
|
||||||
GList **ptr;
|
GList **ptr;
|
||||||
gint i;
|
guint i;
|
||||||
|
|
||||||
desktop_file_dirs_lock ();
|
desktop_file_dirs_lock ();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user