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:
Emmanuel Fleury 2020-11-16 20:45:35 +01:00
parent f606e3350e
commit 872763dbf0

View File

@ -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);