ntdll: Use NTDLL_tolower in _strlwr.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Piotr Caban 2019-03-26 10:26:29 +01:00 committed by Alexandre Julliard
parent f9ee9e63a5
commit 9851785783
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}