mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-23 15:49:16 +02:00
Fix several signedness warnings in gio/gapplication-tool.c
gio/gapplication-tool.c: In function ‘app_help’: gio/gapplication-tool.c:90:21: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 90 | for (i = 0; i < G_N_ELEMENTS (topics); i++) | ^ gio/gapplication-tool.c:117:25: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 117 | for (i = 0; i < G_N_ELEMENTS (substvars); i++) | ^ gio/gapplication-tool.c:121:25: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 121 | for (i = 0; i < G_N_ELEMENTS (substvars); i++) | ^ gio/gapplication-tool.c:137:21: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 137 | for (i = 0; i < G_N_ELEMENTS (topics); i++) | ^ gio/gapplication-tool.c:140:21: error: comparison of integer expressions of different signedness: ‘gint’ {aka ‘int’} and ‘long unsigned int’ 140 | for (i = 0; i < G_N_ELEMENTS (topics); i++) | ^
This commit is contained in:
parent
80e2dc3a7a
commit
e89bd4cc15
@ -85,7 +85,7 @@ app_help (gboolean requested,
|
|||||||
|
|
||||||
if (command)
|
if (command)
|
||||||
{
|
{
|
||||||
gint i;
|
gsize i;
|
||||||
|
|
||||||
for (i = 0; i < G_N_ELEMENTS (topics); i++)
|
for (i = 0; i < G_N_ELEMENTS (topics); i++)
|
||||||
if (g_str_equal (topics[i].command, command))
|
if (g_str_equal (topics[i].command, command))
|
||||||
@ -103,7 +103,7 @@ app_help (gboolean requested,
|
|||||||
if (topic)
|
if (topic)
|
||||||
{
|
{
|
||||||
gint maxwidth;
|
gint maxwidth;
|
||||||
gint i;
|
gsize i;
|
||||||
|
|
||||||
g_string_append_printf (string, "\n %s %s %s\n\n", "gapplication",
|
g_string_append_printf (string, "\n %s %s %s\n\n", "gapplication",
|
||||||
topic->command, topic->synopsis ? _(topic->synopsis) : "");
|
topic->command, topic->synopsis ? _(topic->synopsis) : "");
|
||||||
@ -128,7 +128,7 @@ app_help (gboolean requested,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
gint maxwidth;
|
gint maxwidth;
|
||||||
gint i;
|
gsize i;
|
||||||
|
|
||||||
g_string_append_printf (string, "\n %s %s %s\n\n", "gapplication", _("COMMAND"), _("[ARGS…]"));
|
g_string_append_printf (string, "\n %s %s %s\n\n", "gapplication", _("COMMAND"), _("[ARGS…]"));
|
||||||
g_string_append_printf (string, _("Commands:\n"));
|
g_string_append_printf (string, _("Commands:\n"));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user