Commit 373a43f0 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

msxml3: Added and corrected trace string.

parent fc655397
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment