mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-13 04:46:15 +01:00
Fix a signedness problem in glib/tests/collate.c
glib/tests/collate.c:300:17: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 300 | for (i = 0; i < G_N_ELEMENTS (test); i++) | ^
This commit is contained in:
parent
d49586cfa3
commit
33148e6bc3
@ -271,7 +271,7 @@ int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
gchar *path;
|
||||
gint i;
|
||||
guint i;
|
||||
const gchar *locale;
|
||||
CollateTest test[3];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user