From 1c972c598716cd06b6ff3d18af6505a3214379db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Tue, 17 Dec 2013 22:17:39 +0100 Subject: [PATCH] msxml3: Constify a character string. --- 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 fd8e33adfb2..411f6eb1454 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));