Commit 154df653 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

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

parent b890c636
......@@ -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)
{
......
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