mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-07 13:20:06 +02: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[])
|
main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
gchar *path;
|
gchar *path;
|
||||||
gint i;
|
guint i;
|
||||||
const gchar *locale;
|
const gchar *locale;
|
||||||
CollateTest test[3];
|
CollateTest test[3];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user