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:
Emmanuel Fleury 2020-11-16 17:22:57 +01:00
parent 114b1ecd98
commit 3c461d2396

View File

@ -477,7 +477,7 @@ g_list_store_splice (GListStore *store,
if (n_additions)
{
gint i;
guint i;
for (i = 0; i < n_additions; i++)
{