user32/tests: Fix wsprintf tests compilation with __WINESRC__ defined.

oldstable
Dmitry Timoshkov 2013-10-23 14:54:32 +09:00 committed by Alexandre Julliard
parent b890c63660
commit 154df653d6
1 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ static void CharUpperTest(void)
failed = 0;
for (i=0;i<256;i++)
{
out = (INT_PTR)CharUpper((LPTSTR)i);
out = (INT_PTR)CharUpperA((LPSTR)i);
/* printf("%0x ",out); */
if ((out >> 16) != 0)
{
@ -136,7 +136,7 @@ static void CharLowerTest(void)
failed = 0;
for (i=0;i<256;i++)
{
out = (INT_PTR)CharLower((LPTSTR)i);
out = (INT_PTR)CharLowerA((LPSTR)i);
/* printf("%0x ",out); */
if ((out >> 16) != 0)
{