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