mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
Fix signedness warnings in glib/tests/shell.c
glib/tests/shell.c: In function ‘main’: glib/tests/shell.c:194:17: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 194 | for (i = 0; i < G_N_ELEMENTS (cmdline_tests); i++) | ^ glib/tests/shell.c:201:17: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 201 | for (i = 0; i < G_N_ELEMENTS (quote_tests); i++) | ^ glib/tests/shell.c:208:17: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 208 | for (i = 0; i < G_N_ELEMENTS (unquote_tests); i++) | ^
This commit is contained in:
parent
f4bfc50db3
commit
82be350f59
@ -186,28 +186,28 @@ do_unquote_test (gconstpointer d)
|
|||||||
int
|
int
|
||||||
main (int argc, char *argv[])
|
main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
gint i;
|
gsize i;
|
||||||
gchar *path;
|
gchar *path;
|
||||||
|
|
||||||
g_test_init (&argc, &argv, NULL);
|
g_test_init (&argc, &argv, NULL);
|
||||||
|
|
||||||
for (i = 0; i < G_N_ELEMENTS (cmdline_tests); i++)
|
for (i = 0; i < G_N_ELEMENTS (cmdline_tests); i++)
|
||||||
{
|
{
|
||||||
path = g_strdup_printf ("/shell/cmdline/%d", i);
|
path = g_strdup_printf ("/shell/cmdline/%" G_GSIZE_FORMAT, i);
|
||||||
g_test_add_data_func (path, &cmdline_tests[i], do_cmdline_test);
|
g_test_add_data_func (path, &cmdline_tests[i], do_cmdline_test);
|
||||||
g_free (path);
|
g_free (path);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < G_N_ELEMENTS (quote_tests); i++)
|
for (i = 0; i < G_N_ELEMENTS (quote_tests); i++)
|
||||||
{
|
{
|
||||||
path = g_strdup_printf ("/shell/quote/%d", i);
|
path = g_strdup_printf ("/shell/quote/%" G_GSIZE_FORMAT, i);
|
||||||
g_test_add_data_func (path, "e_tests[i], do_quote_test);
|
g_test_add_data_func (path, "e_tests[i], do_quote_test);
|
||||||
g_free (path);
|
g_free (path);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < G_N_ELEMENTS (unquote_tests); i++)
|
for (i = 0; i < G_N_ELEMENTS (unquote_tests); i++)
|
||||||
{
|
{
|
||||||
path = g_strdup_printf ("/shell/unquote/%d", i);
|
path = g_strdup_printf ("/shell/unquote/%" G_GSIZE_FORMAT, i);
|
||||||
g_test_add_data_func (path, &unquote_tests[i], do_unquote_test);
|
g_test_add_data_func (path, &unquote_tests[i], do_unquote_test);
|
||||||
g_free (path);
|
g_free (path);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user