remove tolower() from eina_str_tolower

SVN revision: 50404
This commit is contained in:
Mike Blumenkrantz 2010-07-21 03:59:37 +00:00
parent 9dc5a96f2d
commit 50e621c5c2
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ eina_str_tolower(char **str)
for (p = *str; (*p); p++)
if ((*p >= 'A') && (*p <= 'Z'))
*p = tolower(*p);
*p += 32;
}