Commit 1c972c59 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

msxml3: Constify a character string.

parent 19834489
...@@ -616,7 +616,7 @@ static HRESULT WINAPI domtext_put_data( ...@@ -616,7 +616,7 @@ static HRESULT WINAPI domtext_put_data(
BSTR data) BSTR data)
{ {
domtext *This = impl_from_IXMLDOMText( iface ); 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)); TRACE("(%p)->(%s)\n", This, debugstr_w(data));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment