From 42d2387b70d7bba4c3cefaa131a477a7ec50eaf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Wed, 7 May 2014 11:44:32 +0200 Subject: [PATCH] everything: fix warnings uninitialized and extraneous parentheses --- src/modules/everything/evry_api.h | 4 ++-- src/modules/everything/evry_plugin.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/everything/evry_api.h b/src/modules/everything/evry_api.h index 27997f9ab..e4844877a 100644 --- a/src/modules/everything/evry_api.h +++ b/src/modules/everything/evry_api.h @@ -188,10 +188,10 @@ struct _Evry_Event_Action_Performed eina_stringshare_replace(&(EVRY_ITEM(_it)->icon), _icon); #define CHECK_TYPE(_item, _type) \ - (((Evry_Item *)_item)->type == _type) + ((Evry_Item *)_item)->type == _type #define CHECK_SUBTYPE(_item, _type) \ - (((Evry_Item *)_item)->subtype == _type) + ((Evry_Item *)_item)->subtype == _type #define IS_BROWSEABLE(_item) ((Evry_Item *)_item)->browseable diff --git a/src/modules/everything/evry_plugin.c b/src/modules/everything/evry_plugin.c index 352b1e178..5ff698132 100644 --- a/src/modules/everything/evry_plugin.c +++ b/src/modules/everything/evry_plugin.c @@ -113,7 +113,7 @@ evry_plugin_register(Evry_Plugin *p, int type, int priority) { Eina_List *l; Plugin_Config *pc; - Eina_List *conf; + Eina_List *conf = NULL; int new_conf = 0; if ((type < 0) || (type > 2))