From f3be406bb0f3be4f253b287c2f1f7d6283e1d05f Mon Sep 17 00:00:00 2001 From: rbuj Date: Wed, 15 Dec 2021 11:04:52 +0100 Subject: Fix some -Wsign-compare warnings --- applets/wncklet/window-list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'applets/wncklet') diff --git a/applets/wncklet/window-list.c b/applets/wncklet/window-list.c index 758933b3..db8a8202 100644 --- a/applets/wncklet/window-list.c +++ b/applets/wncklet/window-list.c @@ -865,7 +865,7 @@ gboolean window_list_applet_fill(MatePanelApplet* applet) /* disable the item of system monitor, if not exists. * example, mate-system-monitor, o gnome-system-monitor */ char* programpath; - int i; + gsize i; for (i = 0; i < G_N_ELEMENTS(system_monitors); i += 1) { @@ -910,7 +910,7 @@ gboolean window_list_applet_fill(MatePanelApplet* applet) static void call_system_monitor(GtkAction* action, TasklistData* tasklist) { - int i; + gsize i; for (i = 0; i < G_N_ELEMENTS(system_monitors); i += 1) { -- cgit v1.2.1