discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=9d0f4b70361896aa799df7669b4762b04e5e8a80
commit 9d0f4b70361896aa799df7669b4762b04e5e8a80 Author: Mike Blumenkrantz <zm...@samsung.com> Date: Fri Apr 4 15:21:58 2014 -0400 use e_util_strcmp() in e_font stuff CID 1039827, 1039826 --- src/bin/e_font.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_font.c b/src/bin/e_font.c index c977a33..0079d37 100644 --- a/src/bin/e_font.c +++ b/src/bin/e_font.c @@ -322,7 +322,7 @@ e_font_fallback_remove(const char *font) EINA_LIST_FOREACH(e_config->font_fallbacks, next, eff) { - if (!strcmp(eff->name, font)) + if (!e_util_strcmp(eff->name, font)) { e_config->font_fallbacks = eina_list_remove_list(e_config->font_fallbacks, next); @@ -407,7 +407,7 @@ e_font_default_remove(const char *text_class) /* search for the text class */ EINA_LIST_FOREACH(e_config->font_defaults, next, efd) { - if (!strcmp(efd->text_class, text_class)) + if (!e_util_strcmp(efd->text_class, text_class)) { e_config->font_defaults = eina_list_remove_list(e_config->font_defaults, next); --