jaehwan pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=9c53a1b0507e81a1f37de082fbf000ce305884ff
commit 9c53a1b0507e81a1f37de082fbf000ce305884ff Author: Jaehwan Kim <jae.hwan....@samsung.com> Date: Mon Jul 18 11:06:06 2016 +0900 widget_list: fix the function name Window System uses same function name. @fix --- src/bin/common/widget_list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/common/widget_list.c b/src/bin/common/widget_list.c index 46330f4..7eeb548 100644 --- a/src/bin/common/widget_list.c +++ b/src/bin/common/widget_list.c @@ -143,7 +143,7 @@ style_name_check(const Eina_Stringshare *group_name, const char *style_name) return !strcmp(style_name, style); } -char* strrstr(char* str, const char* ptn) +char* _strrstr(char* str, const char* ptn) { unsigned int ptnlen = 0; unsigned int i = 0, j = 0; @@ -223,7 +223,7 @@ item_style_name_get(const Eina_Stringshare *group_name, Eina_List *style_list) { char *str; - str = strrstr(style, style_item->name); + str = _strrstr(style, style_item->name); if (str) { style[strlen(style) - strlen(str) - 1] = '\0'; --