Commit df01f671 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

riched20: Do not use wide character constants.

parent 14077f67
......@@ -130,7 +130,7 @@ ME_String *ME_VSplitString(ME_String *orig, int charidx)
s = ME_MakeString(orig->szData+charidx);
orig->nLen = charidx;
orig->szData[charidx] = L'\0';
orig->szData[charidx] = '\0';
return s;
}
......
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