Commit 11ec0a58 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Fixed CharNextW.

parent 52034b00
......@@ -170,7 +170,8 @@ LPWSTR WINAPI CharNextExW( WORD codepage, LPCWSTR ptr, DWORD flags )
LPWSTR WINAPI CharNextW(LPCWSTR x)
{
if (*x) x++;
else return (LPWSTR)x;
return (LPWSTR)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