mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-28 00:16:15 +01:00
Fixing signedness in glib/gtester.c
glib/gtester.c: In function ‘main’: glib/gtester.c:705:19: error: comparison of integer expressions of different signedness: ‘guint’ {aka ‘unsigned int’} and ‘int’ [-Werror=sign-compare] for (ui = 1; ui < argc; ui++) ^
This commit is contained in:
parent
125a1e1f30
commit
c3d0440aa2
@ -677,7 +677,7 @@ int
|
||||
main (int argc,
|
||||
char **argv)
|
||||
{
|
||||
guint ui;
|
||||
gint ui;
|
||||
|
||||
g_set_prgname (argv[0]);
|
||||
parse_args (&argc, &argv);
|
||||
|
Loading…
Reference in New Issue
Block a user