From 373a43f0afd8738384a76cd0d2a17ec993482746 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Wed, 13 Aug 2008 16:06:22 +1000 Subject: [PATCH] msxml3: Added and corrected trace string. --- dlls/msxml3/domdoc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c index 8e39391f950..61f01f1fdb7 100644 --- a/dlls/msxml3/domdoc.c +++ b/dlls/msxml3/domdoc.c @@ -1444,7 +1444,7 @@ static HRESULT WINAPI domdoc_save( HRESULT ret = S_OK; DWORD written; - TRACE("(%p)->(var(vt %x, %s))\n", This, V_VT(&destination), + TRACE("(%p)->(var(vt %d, %s))\n", This, V_VT(&destination), V_VT(&destination) == VT_BSTR ? debugstr_w(V_BSTR(&destination)) : NULL); if(V_VT(&destination) != VT_BSTR && V_VT(&destination) != VT_UNKNOWN) @@ -1475,6 +1475,8 @@ static HRESULT WINAPI domdoc_save( IXMLDOMDocument_Release(pDocument); } + TRACE("ret %d", ret); + return ret; }