From 2e651c9ec1c2dc110f98c2d2618576f074a98718 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 5 Sep 2014 14:40:49 +0200 Subject: [PATCH] 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 --- src/modules/everything/evry_plug_actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/everything/evry_plug_actions.c b/src/modules/everything/evry_plug_actions.c index 075d8f459..87170ce5a 100644 --- a/src/modules/everything/evry_plug_actions.c +++ b/src/modules/everything/evry_plug_actions.c @@ -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);