modules/everything: Last orrurance of missing parentheses

Again, a logic problem as without the parentheses this would evauluate to
false in all cases.

CID 1212002
This commit is contained in:
Stefan Schmidt 2014-09-05 14:40:49 +02:00
parent 1180a5300b
commit 2e651c9ec1
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ _browse(Evry_Plugin *plugin, const Evry_Item *it)
Evry_Action *act;
Plugin *p;
if (!CHECK_TYPE(it, EVRY_TYPE_ACTION))
if (!(CHECK_TYPE(it, EVRY_TYPE_ACTION)))
return NULL;
act = EVRY_ACTN(it);