diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | src/indicator-sus.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 1671b59..93b70d2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-sus (0.1~ppa7~status7) karmic; urgency=low + + * Logic fix + + -- Ted Gould <ted@ubuntu.com> Wed, 12 Aug 2009 22:24:13 -0600 + indicator-sus (0.1~ppa7~status6) karmic; urgency=low * Fixing signal name and cleaning debug messages. diff --git a/src/indicator-sus.c b/src/indicator-sus.c index 7a198b2..07efc86 100644 --- a/src/indicator-sus.c +++ b/src/indicator-sus.c @@ -187,7 +187,7 @@ status_icon_cb (DBusGProxy * proxy, char * icons, GError *error, gpointer userda { g_return_if_fail(status_image != NULL); g_return_if_fail(icons != NULL); - g_return_if_fail(icons[0] == '\0'); + g_return_if_fail(icons[0] != '\0'); g_debug("Changing status icon: '%s'", icons); gtk_image_set_from_icon_name(status_image, icons, GTK_ICON_SIZE_MENU); |