revert previous. why would I do that in the first place?

SVN revision: 50407
This commit is contained in:
Mike Blumenkrantz 2010-07-21 05:02:17 +00:00
parent 00023656af
commit 55f0882da4
1 changed files with 1 additions and 2 deletions

View File

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