mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
Fix signedness warning in gio/gliststore.c:g_list_store_splice()
gio/gliststore.c: In function ‘g_list_store_splice’: gio/gliststore.c:482:21: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘guint’ {aka ‘unsigned int’} 482 | for (i = 0; i < n_additions; i++) | ^
This commit is contained in:
parent
114b1ecd98
commit
3c461d2396
@ -477,7 +477,7 @@ g_list_store_splice (GListStore *store,
|
||||
|
||||
if (n_additions)
|
||||
{
|
||||
gint i;
|
||||
guint i;
|
||||
|
||||
for (i = 0; i < n_additions; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user