diff options
author | Ted Gould <ted@canonical.com> | 2009-01-21 16:30:27 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-01-21 16:30:27 -0600 |
commit | 1ac3498216b856954b9035f84e8d85ee0f1de3ce (patch) | |
tree | 43fab2f4bb5111313cac255ac28d3bb89c699d11 | |
parent | e4db2322a21d87c66bf0d9a678e24be119579464 (diff) | |
download | ayatana-indicator-messages-1ac3498216b856954b9035f84e8d85ee0f1de3ce.tar.gz ayatana-indicator-messages-1ac3498216b856954b9035f84e8d85ee0f1de3ce.tar.bz2 ayatana-indicator-messages-1ac3498216b856954b9035f84e8d85ee0f1de3ce.zip |
I hate me
-rw-r--r-- | src/indicator-messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-messages.c b/src/indicator-messages.c index 2fa7f30..a026798 100644 --- a/src/indicator-messages.c +++ b/src/indicator-messages.c @@ -41,7 +41,7 @@ subtype_cb (IndicateListener * listener, IndicateListenerServer * server, Indica { GtkMenu * menushell = GTK_MENU(data); - if (property != NULL || strcmp(property, "subtype")) { + if (property == NULL || strcmp(property, "subtype")) { /* We should only ever get subtypes, but just in case */ g_warning("Subtype callback got a property '%s'", property); return; |