mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-11-03 01:42:18 +01:00
Fix signedness warning in gio/gfileinfo.c:g_file_info_finalize()
gio/gfileinfo.c: In function ‘g_file_info_finalize’:
gio/gfileinfo.c:327:17: error: comparison of integer expressions of different signedness: ‘int’ and ‘guint’ {aka ‘unsigned int’}
327 | for (i = 0; i < info->attributes->len; i++)
| ^
This commit is contained in:
@@ -318,7 +318,7 @@ static void
|
||||
g_file_info_finalize (GObject *object)
|
||||
{
|
||||
GFileInfo *info;
|
||||
int i;
|
||||
guint i;
|
||||
GFileAttribute *attrs;
|
||||
|
||||
info = G_FILE_INFO (object);
|
||||
|
||||
Reference in New Issue
Block a user