msxml3: Constify a character string.

This commit is contained in:
Frédéric Delanoy 2013-12-17 22:17:39 +01:00 committed by Alexandre Julliard
parent 1983448942
commit 1c972c5987
1 changed files with 1 additions and 1 deletions

View File

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