mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Fix signedness warning in gio/gfileinfo.c:g_file_info_clear_status()
gio/gfileinfo.c: In function ‘g_file_info_clear_status’: gio/gfileinfo.c:499:17: error: comparison of integer expressions of different signedness: ‘int’ and ‘guint’ {aka ‘unsigned int’} 499 | for (i = 0; i < info->attributes->len; i++) | ^
This commit is contained in:
parent
48d783d1d9
commit
ece9a52d0b
@ -491,7 +491,7 @@ void
|
||||
g_file_info_clear_status (GFileInfo *info)
|
||||
{
|
||||
GFileAttribute *attrs;
|
||||
int i;
|
||||
guint i;
|
||||
|
||||
g_return_if_fail (G_IS_FILE_INFO (info));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user