msxml3: Added and corrected trace string.

This commit is contained in:
Alistair Leslie-Hughes 2008-08-13 16:06:22 +10:00 committed by Alexandre Julliard
parent fc6553973f
commit 373a43f0af
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}