msxml3: Fix trace formats to match all other files.

This commit is contained in:
Nikolay Sivov 2011-10-31 16:44:28 +03:00 committed by Alexandre Julliard
parent da64996159
commit 32d217d2e3
1 changed files with 6 additions and 5 deletions

View File

@ -60,7 +60,9 @@ static HRESULT WINAPI parseError_QueryInterface(
REFIID riid, REFIID riid,
void** ppvObject ) void** ppvObject )
{ {
TRACE("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppvObject); parse_error_t *This = impl_from_IXMLDOMParseError( iface );
TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppvObject);
if ( IsEqualGUID( riid, &IID_IUnknown ) || if ( IsEqualGUID( riid, &IID_IUnknown ) ||
IsEqualGUID( riid, &IID_IDispatch ) || IsEqualGUID( riid, &IID_IDispatch ) ||
@ -85,7 +87,7 @@ static ULONG WINAPI parseError_AddRef(
{ {
parse_error_t *This = impl_from_IXMLDOMParseError( iface ); parse_error_t *This = impl_from_IXMLDOMParseError( iface );
ULONG ref = InterlockedIncrement( &This->ref ); ULONG ref = InterlockedIncrement( &This->ref );
TRACE("(%p) ref now %d\n", This, ref); TRACE("(%p)->(%d)\n", This, ref);
return ref; return ref;
} }
@ -93,10 +95,9 @@ static ULONG WINAPI parseError_Release(
IXMLDOMParseError *iface ) IXMLDOMParseError *iface )
{ {
parse_error_t *This = impl_from_IXMLDOMParseError( iface ); parse_error_t *This = impl_from_IXMLDOMParseError( iface );
ULONG ref; ULONG ref = InterlockedDecrement( &This->ref );
ref = InterlockedDecrement( &This->ref ); TRACE("(%p)->(%d)\n", This, ref);
TRACE("(%p) ref now %d\n", This, ref);
if ( ref == 0 ) if ( ref == 0 )
{ {
SysFreeString(This->url); SysFreeString(This->url);