ntdll: Use NTDLL_tolower in _memicmp.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Piotr Caban 2019-03-26 10:26:22 +01:00 committed by Alexandre Julliard
parent 748628e23e
commit f9ee9e63a5
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ INT __cdecl _memicmp( LPCSTR s1, LPCSTR s2, DWORD len )
int ret = 0;
while (len--)
{
if ((ret = tolower(*s1) - tolower(*s2))) break;
if ((ret = NTDLL_tolower(*s1) - NTDLL_tolower(*s2))) break;
s1++;
s2++;
}