ole32: Do not use wide character constants.

This commit is contained in:
Michael Stefaniuc 2007-06-21 22:57:32 +02:00 committed by Alexandre Julliard
parent 34b45b311e
commit 717cccb5ce
1 changed files with 1 additions and 1 deletions

View File

@ -2597,7 +2597,7 @@ BSTR WINAPI PropSysAllocString(LPCOLESTR str)
* string.
*/
stringBuffer = (WCHAR*)newBuffer;
stringBuffer[len] = L'\0';
stringBuffer[len] = '\0';
return (LPWSTR)stringBuffer;
}