Commit 87db243f authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

user32: Fix a pointer size warning in Win64.

parent 3ea306f2
......@@ -288,7 +288,7 @@ LPSTR WINAPI CharUpperA(LPSTR str)
LPWSTR WINAPI CharLowerW(LPWSTR x)
{
if (HIWORD(x)) return strlwrW(x);
else return (LPWSTR)((UINT)tolowerW(LOWORD(x)));
else return (LPWSTR)((UINT_PTR)tolowerW(LOWORD(x)));
}
......@@ -298,7 +298,7 @@ LPWSTR WINAPI CharLowerW(LPWSTR x)
LPWSTR WINAPI CharUpperW(LPWSTR x)
{
if (HIWORD(x)) return struprW(x);
else return (LPWSTR)((UINT)toupperW(LOWORD(x)));
else return (LPWSTR)((UINT_PTR)toupperW(LOWORD(x)));
}
......
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