Module: wine Branch: master Commit: 373a43f0afd8738384a76cd0d2a17ec993482746 URL: http://source.winehq.org/git/wine.git/?a=commit;h=373a43f0afd8738384a76cd0d2...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Wed Aug 13 16:06:22 2008 +1000
msxml3: Added and corrected trace string.
---
dlls/msxml3/domdoc.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c index 8e39391..61f01f1 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; }