Commit 4df6fe12 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msxml3: Print the debug string and not the pointer to it.

parent 5a5a89a3
...@@ -380,7 +380,7 @@ static HRESULT WINAPI domcdata_put_text( ...@@ -380,7 +380,7 @@ static HRESULT WINAPI domcdata_put_text(
BSTR p) BSTR p)
{ {
domcdata *This = impl_from_IXMLDOMCDATASection( iface ); domcdata *This = impl_from_IXMLDOMCDATASection( iface );
TRACE("(%p)->(%p)\n", This, debugstr_w(p)); TRACE("(%p)->(%s)\n", This, debugstr_w(p));
return node_put_text( &This->node, p ); return node_put_text( &This->node, p );
} }
......
...@@ -2951,7 +2951,7 @@ static HRESULT WINAPI domdoc_getProperty( ...@@ -2951,7 +2951,7 @@ static HRESULT WINAPI domdoc_getProperty(
{ {
domdoc *This = impl_from_IXMLDOMDocument3( iface ); domdoc *This = impl_from_IXMLDOMDocument3( iface );
TRACE("(%p)->(%p)\n", This, debugstr_w(p)); TRACE("(%p)->(%s)\n", This, debugstr_w(p));
if (!var) if (!var)
return E_INVALIDARG; return E_INVALIDARG;
......
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