msxml3: Constify a character string

Frédéric Delanoy frederic.delanoy at gmail.com
Tue Dec 17 15:17:39 CST 2013


---
 dlls/msxml3/text.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msxml3/text.c b/dlls/msxml3/text.c
index fd8e33a..411f6eb 100644
--- a/dlls/msxml3/text.c
+++ b/dlls/msxml3/text.c
@@ -616,7 +616,7 @@ static HRESULT WINAPI domtext_put_data(
     BSTR data)
 {
     domtext *This = impl_from_IXMLDOMText( iface );
-    static WCHAR rnW[] = {'\r','\n',0};
+    static const WCHAR rnW[] = {'\r','\n',0};
 
     TRACE("(%p)->(%s)\n", This, debugstr_w(data));
 
-- 
1.8.5




More information about the wine-patches mailing list