Fixed CharNextW.

oldstable
Marcus Meissner 2000-08-07 02:33:50 +00:00 committed by Alexandre Julliard
parent 52034b00eb
commit 11ec0a58ac
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}