mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 23:16:14 +01:00
Fix signedness warning in gobject/tests/signals.c:test_introspection()
gobject/tests/signals.c: In function ‘test_introspection’: gobject/tests/signals.c:1180:17: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘guint’ {aka ‘unsigned int’} 1180 | for (i = 0; i < n_ids; i++) | ^
This commit is contained in:
parent
176b204754
commit
805053d09b
@ -1148,7 +1148,7 @@ test_introspection (void)
|
||||
guint *ids;
|
||||
guint n_ids;
|
||||
const gchar *name;
|
||||
gint i;
|
||||
guint i;
|
||||
const gchar *names[] = {
|
||||
"simple",
|
||||
"simple-detailed",
|
||||
|
Loading…
Reference in New Issue
Block a user