Fix compiler warnings

SVN revision: 45199
This commit is contained in:
Sebastian Dransfeld 2010-01-15 20:51:23 +00:00
parent a82e7511aa
commit af22e351b2
2 changed files with 2 additions and 10 deletions

View File

@ -95,13 +95,6 @@ static void efreet_icon_cache_add(Efreet_Icon_Theme *theme, const char *icon, un
static Efreet_Icon_Theme *fake_null = NULL;
#ifdef EFREET_MODULE_LOG_DOM
#undef EFREET_MODULE_LOG_DOM
#endif
#define EFREET_MODULE_LOG_DOM _efreet_icon_log_dom
static int _efreet_icon_log_dom = -1;
static void
_efreet_icon_cache_list_destroy(Eina_List *list)
{

View File

@ -40,7 +40,6 @@ static int _efreet_ini_log_dom = -1;
static Eina_Hash *efreet_ini_parse(const char *file);
static char *efreet_ini_unescape(const char *str);
static int _efreet_ini_log_om = -1;
static Eina_Bool
efreet_ini_section_save(const Eina_Hash *hash, const void *key, void *data, void *fdata);
static Eina_Bool
@ -57,8 +56,8 @@ efreet_ini_init(void)
_efreet_ini_log_dom = eina_log_domain_register("Efreet_init", EFREET_DEFAULT_LOG_COLOR);
if (_efreet_ini_log_dom < 0)
{
ERROR("Efreet: Could not create a log domain for efreet_init");
return 0;
ERROR("Efreet: Could not create a log domain for efreet_init");
return 0;
}
return 1;
}