diff options
author | rbuj <[email protected]> | 2021-12-15 11:04:52 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-12-20 17:54:37 +0100 |
commit | f3be406bb0f3be4f253b287c2f1f7d6283e1d05f (patch) | |
tree | 847722d1efdf1768266214e0ea675b7bf0c069e7 /applets/wncklet | |
parent | 462949a3bc6b54675e9dec59745504c949856524 (diff) | |
download | mate-panel-f3be406bb0f3be4f253b287c2f1f7d6283e1d05f.tar.bz2 mate-panel-f3be406bb0f3be4f253b287c2f1f7d6283e1d05f.tar.xz |
Fix some -Wsign-compare warnings
Diffstat (limited to 'applets/wncklet')
-rw-r--r-- | applets/wncklet/window-list.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |