mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 02:06: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:
parent
f606e3350e
commit
872763dbf0
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user