summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2014-09-05 14:40:49 +0200
committerStefan Schmidt <s.schmidt@samsung.com>2014-09-05 14:40:49 +0200
commit2e651c9ec1c2dc110f98c2d2618576f074a98718 (patch)
treebc72e07b62c926dd830eec96e66670c48b13793b
parent1180a5300b3bc84c57efa3b5b2ab7fbd21fa65d2 (diff)
downloadenlightenment-2e651c9ec1c2dc110f98c2d2618576f074a98718.tar.gz
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
-rw-r--r--src/modules/everything/evry_plug_actions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/everything/evry_plug_actions.c b/src/modules/everything/evry_plug_actions.c
index 075d8f4594..87170ce5ad 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);