From f51f9a19b71c9722b9d26b935f975fc686ce2b9c Mon Sep 17 00:00:00 2001 From: Nikos Tsipinakis Date: Sat, 21 Jan 2017 09:19:02 +0200 Subject: [PATCH] Add missing semicolon --- src/notification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notification.c b/src/notification.c index e6c2386..a61216a 100644 --- a/src/notification.c +++ b/src/notification.c @@ -149,7 +149,7 @@ int notification_is_duplicate(const notification *a, const notification *b) //Comparing raw icons is not supported, assume they are not identical if (settings.icon_position != icons_off && (a->raw_icon != NULL || b->raw_icon != NULL)) - return false + return false; return strcmp(a->appname, b->appname) == 0 && strcmp(a->summary, b->summary) == 0