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

oldstable
Michael Stefaniuc 2012-03-21 23:37:36 +01:00 committed by Alexandre Julliard
parent 5a5a89a327
commit 4df6fe1246
2 changed files with 2 additions and 2 deletions

View File

@ -380,7 +380,7 @@ static HRESULT WINAPI domcdata_put_text(
BSTR p)
{
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 );
}

View File

@ -2951,7 +2951,7 @@ static HRESULT WINAPI domdoc_getProperty(
{
domdoc *This = impl_from_IXMLDOMDocument3( iface );
TRACE("(%p)->(%p)\n", This, debugstr_w(p));
TRACE("(%p)->(%s)\n", This, debugstr_w(p));
if (!var)
return E_INVALIDARG;