diff --git a/src/bin/e_int_config_modules.c b/src/bin/e_int_config_modules.c index 3446e7c47..0153e13b7 100644 --- a/src/bin/e_int_config_modules.c +++ b/src/bin/e_int_config_modules.c @@ -236,7 +236,7 @@ _cftype_free(CFType *cft) { CFModule *cfm; - assert(!cft->modules_hash); // must do it before calling this function + assert(cft->modules_hash == NULL); // must do it before calling this function EINA_LIST_FREE(cft->modules, cfm) _module_free(cfm); diff --git a/src/modules/conf_theme/e_int_config_theme.c b/src/modules/conf_theme/e_int_config_theme.c index e44e2f63d..219b4e3de 100644 --- a/src/modules/conf_theme/e_int_config_theme.c +++ b/src/modules/conf_theme/e_int_config_theme.c @@ -728,7 +728,7 @@ _ilist_files_add(E_Config_Dialog_Data *cfdata, if (it) { EINA_ITERATOR_FOREACH(it, file) - if (strstr(file,".edj") != NULL) + if (strstr(file, ".edj")) { themefiles = eina_list_append(themefiles, file); }