mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
msxml3: Print the debug string and not the pointer to it.
This commit is contained in:
parent
5a5a89a327
commit
4df6fe1246
2 changed files with 2 additions and 2 deletions
|
@ -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 );
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue