rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=8380bcd26efce2bbc214c8b1280060296237ce4f
commit 8380bcd26efce2bbc214c8b1280060296237ce4f Author: Mykyta Biliavskyi <[email protected]> Date: Wed Sep 21 17:31:13 2016 +0300 Fix assign unsigned long int to unsigned int. @svace WGID 20286 and WGID 20920. @fix --- src/bin/common/string_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/common/string_common.c b/src/bin/common/string_common.c index 459a5f4..26fb06f 100644 --- a/src/bin/common/string_common.c +++ b/src/bin/common/string_common.c @@ -75,8 +75,8 @@ string_cat(const char *str1, const char *str2) const char * string_rstr(const char *str1, const char *str2) { - unsigned int str2len = 0; - unsigned int i = 0, j = 0; + size_t str2len = 0; + size_t i = 0, j = 0; str2len = strlen(str2) - 1; --
