mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-15 20:25:12 +01:00
Fix signedness warning in gio/gfileinfo.c:g_file_info_set_attribute_mask()
gio/gfileinfo.c: In function ‘g_file_info_set_attribute_mask’: gio/gfileinfo.c:453:21: error: comparison of integer expressions of different signedness: ‘int’ and ‘guint’ {aka ‘unsigned int’} 453 | for (i = 0; i < info->attributes->len; i++) | ^
This commit is contained in:
parent
b82146c4b6
commit
48d783d1d9
@ -439,7 +439,7 @@ g_file_info_set_attribute_mask (GFileInfo *info,
|
||||
GFileAttributeMatcher *mask)
|
||||
{
|
||||
GFileAttribute *attr;
|
||||
int i;
|
||||
guint i;
|
||||
|
||||
g_return_if_fail (G_IS_FILE_INFO (info));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user