everything: fix warnings uninitialized and extraneous parentheses
authorJérémy Zurcher <jeremy@asynk.ch>
Wed, 7 May 2014 09:44:32 +0000 (11:44 +0200)
committerJérémy Zurcher <jeremy@asynk.ch>
Wed, 7 May 2014 09:44:32 +0000 (11:44 +0200)
src/modules/everything/evry_api.h
src/modules/everything/evry_plugin.c

index 27997f9..e484487 100644 (file)
@@ -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
 
index 352b1e1..5ff6981 100644 (file)
@@ -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))