Commit 98517857 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

ntdll: Use NTDLL_tolower in _strlwr.

parent f9ee9e63
...@@ -311,7 +311,7 @@ LPSTR __cdecl _strupr( LPSTR str ) ...@@ -311,7 +311,7 @@ LPSTR __cdecl _strupr( LPSTR str )
LPSTR __cdecl _strlwr( LPSTR str ) LPSTR __cdecl _strlwr( LPSTR str )
{ {
LPSTR ret = str; LPSTR ret = str;
for ( ; *str; str++) *str = tolower(*str); for ( ; *str; str++) *str = NTDLL_tolower(*str);
return ret; return ret;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment