Michael Stefaniuc : riched20: Do not use wide character constants.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jun 22 07:35:40 CDT 2007


Module: wine
Branch: master
Commit: df01f671759c74fb9293d701882637a96ae35c5e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=df01f671759c74fb9293d701882637a96ae35c5e

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Thu Jun 21 22:56:17 2007 +0200

riched20: Do not use wide character constants.

---

 dlls/riched20/string.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/riched20/string.c b/dlls/riched20/string.c
index 2f60810..10f6239 100644
--- a/dlls/riched20/string.c
+++ b/dlls/riched20/string.c
@@ -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;
 }
 




More information about the wine-cvs mailing list