ntdll: Use NTDLL_tolower in _strlwr.
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f9ee9e63a5
commit
9851785783
|
@ -311,7 +311,7 @@ LPSTR __cdecl _strupr( LPSTR str )
|
|||
LPSTR __cdecl _strlwr( LPSTR str )
|
||||
{
|
||||
LPSTR ret = str;
|
||||
for ( ; *str; str++) *str = tolower(*str);
|
||||
for ( ; *str; str++) *str = NTDLL_tolower(*str);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue