riched20: Do not use wide character constants.

This commit is contained in:
Michael Stefaniuc 2007-06-21 22:56:17 +02:00 committed by Alexandre Julliard
parent 14077f67c8
commit df01f67175
1 changed files with 1 additions and 1 deletions

View File

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