Add missing semicolon

This commit is contained in:
Nikos Tsipinakis 2017-01-21 09:19:02 +02:00
parent bba3cfe700
commit f51f9a19b7

View File

@ -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