Commit 717cccb5 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

ole32: Do not use wide character constants.

parent 34b45b31
......@@ -2597,7 +2597,7 @@ BSTR WINAPI PropSysAllocString(LPCOLESTR str)
* string.
*/
stringBuffer = (WCHAR*)newBuffer;
stringBuffer[len] = L'\0';
stringBuffer[len] = '\0';
return (LPWSTR)stringBuffer;
}
......
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