From 82aa918a30f3ead55d17ca8df22f2453248034a1 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Mon, 31 Oct 2005 21:04:31 +0000 Subject: [PATCH] Actually print the IIDs. --- dlls/msxml3/domdoc.c | 2 +- dlls/msxml3/element.c | 2 +- dlls/msxml3/node.c | 2 +- dlls/msxml3/nodelist.c | 2 +- dlls/msxml3/nodemap.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c index 1301396ba71..b717be99642 100644 --- a/dlls/msxml3/domdoc.c +++ b/dlls/msxml3/domdoc.c @@ -62,7 +62,7 @@ static HRESULT WINAPI domdoc_QueryInterface( IXMLDOMDocument *iface, REFIID riid { domdoc *This = impl_from_IXMLDOMDocument( iface ); - TRACE("%p %p %p\n", This, debugstr_guid( riid ), ppvObject ); + TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject ); if ( IsEqualGUID( riid, &IID_IXMLDOMDocument ) || IsEqualGUID( riid, &IID_IXMLDOMNode ) || diff --git a/dlls/msxml3/element.c b/dlls/msxml3/element.c index 18604acc368..2dae6a5b12a 100644 --- a/dlls/msxml3/element.c +++ b/dlls/msxml3/element.c @@ -62,7 +62,7 @@ static HRESULT WINAPI domelem_QueryInterface( REFIID riid, void** ppvObject ) { - TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject); + TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject); if ( IsEqualGUID( riid, &IID_IXMLDOMElement ) || IsEqualGUID( riid, &IID_IUnknown ) || diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c index 3d8b1906f74..8e9a4fa8f5c 100644 --- a/dlls/msxml3/node.c +++ b/dlls/msxml3/node.c @@ -73,7 +73,7 @@ static HRESULT WINAPI xmlnode_QueryInterface( REFIID riid, void** ppvObject ) { - TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject); + TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject); if ( IsEqualGUID( riid, &IID_IUnknown ) || IsEqualGUID( riid, &IID_IDispatch ) || diff --git a/dlls/msxml3/nodelist.c b/dlls/msxml3/nodelist.c index c64eddb3d62..8ef4a460729 100644 --- a/dlls/msxml3/nodelist.c +++ b/dlls/msxml3/nodelist.c @@ -162,7 +162,7 @@ static HRESULT WINAPI xmlnodelist_QueryInterface( REFIID riid, void** ppvObject ) { - TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject); + TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject); if ( IsEqualGUID( riid, &IID_IUnknown ) || IsEqualGUID( riid, &IID_IDispatch ) || diff --git a/dlls/msxml3/nodemap.c b/dlls/msxml3/nodemap.c index 9062353d46a..d8f87ec8e90 100644 --- a/dlls/msxml3/nodemap.c +++ b/dlls/msxml3/nodemap.c @@ -57,7 +57,7 @@ static HRESULT WINAPI xmlnodemap_QueryInterface( IXMLDOMNamedNodeMap *iface, REFIID riid, void** ppvObject ) { - TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject); + TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject); if( IsEqualGUID( riid, &IID_IXMLDOMElement ) || IsEqualGUID( riid, &IID_IUnknown ) ||