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_has_namespace()
gio/gfileinfo.c: In function ‘g_file_info_has_namespace’:
gio/gfileinfo.c:610:17: error: comparison of integer expressions of different signedness: ‘int’ and ‘guint’ {aka ‘unsigned int’}
610 | for (i = 0; i < info->attributes->len; i++)
| ^
This commit is contained in:
@@ -599,7 +599,7 @@ g_file_info_has_namespace (GFileInfo *info,
|
||||
{
|
||||
GFileAttribute *attrs;
|
||||
guint32 ns_id;
|
||||
int i;
|
||||
guint i;
|
||||
|
||||
g_return_val_if_fail (G_IS_FILE_INFO (info), FALSE);
|
||||
g_return_val_if_fail (name_space != NULL, FALSE);
|
||||
|
||||
Reference in New Issue
Block a user