aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-01-12 06:55:30 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-01-12 06:55:30 +0100
commit4c43b78c69c04a968ae34cd960e45dd05074919b (patch)
treea31f67b117df7ff4e65226202a06886affd653d5
parentf66d3c8d202b1afe13150b6c33dac60edbf9f131 (diff)
downloadconnman-gnome-4c43b78c69c04a968ae34cd960e45dd05074919b.tar.gz
Fix unsigned comparison warning
-rw-r--r--applet/status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/applet/status.c b/applet/status.c
index bd19da9..423252c 100644
--- a/applet/status.c
+++ b/applet/status.c
@@ -57,7 +57,7 @@ static IconAnimation *icon_animation_load(GtkIconTheme *icontheme,
const gchar *pattern, guint count)
{
IconAnimation *animation;
- int i;
+ unsigned int i;
animation = g_new0(IconAnimation, 1);
@@ -122,7 +122,7 @@ static void icon_animation_stop(IconAnimation *animation)
static void icon_animation_free(IconAnimation *animation)
{
- int i;
+ unsigned int i;
gtk_status_icon_set_visible(statusicon, FALSE);