mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 07:56:17 +01:00
Fix signedness warning in gio/gfileinfo.c:g_file_info_copy_into()
gio/gfileinfo.c: In function ‘g_file_info_copy_into’: gio/gfileinfo.c:385:17: error: comparison of integer expressions of different signedness: ‘int’ and ‘guint’ {aka ‘unsigned int’} 385 | for (i = 0; i < dest_info->attributes->len; i++) | ^
This commit is contained in:
parent
bb3f366101
commit
b82146c4b6
@ -376,7 +376,7 @@ g_file_info_copy_into (GFileInfo *src_info,
|
||||
GFileInfo *dest_info)
|
||||
{
|
||||
GFileAttribute *source, *dest;
|
||||
int i;
|
||||
guint i;
|
||||
|
||||
g_return_if_fail (G_IS_FILE_INFO (src_info));
|
||||
g_return_if_fail (G_IS_FILE_INFO (dest_info));
|
||||
|
Loading…
Reference in New Issue
Block a user