seoz pushed a commit to branch master. http://git.enlightenment.org/tools/elm-theme-viewer.git/commit/?id=9e1bf4e8235e832f77df04405352355432561860
commit 9e1bf4e8235e832f77df04405352355432561860 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Fri Apr 25 15:01:59 2014 +0900 widget_style: removed unused return value. This fixes coverity CID 1205013. --- src/bin/widget_style.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/widget_style.c b/src/bin/widget_style.c index faa23bb..478bf5d 100644 --- a/src/bin/widget_style.c +++ b/src/bin/widget_style.c @@ -34,7 +34,7 @@ _style_split_2(const char *orig_style) const char *style; strncpy(buf, orig_style, sizeof(buf)); - style = strtok(buf, "/"); + strtok(buf, "/"); style = strtok(NULL, "/"); //INF("%s", style); --