From 2dbbecbb9e23d9cde7d48eb11af3675fffff51c5 Mon Sep 17 00:00:00 2001 From: Christian Costa Date: Thu, 17 May 2012 10:09:48 +0200 Subject: [PATCH] d3drm: Display new ref in trace for AddRef and Release for IDirect3DRMMesh. --- dlls/d3drm/meshbuilder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/d3drm/meshbuilder.c b/dlls/d3drm/meshbuilder.c index c84ccb850df..38a38e8c30a 100644 --- a/dlls/d3drm/meshbuilder.c +++ b/dlls/d3drm/meshbuilder.c @@ -2149,7 +2149,7 @@ static ULONG WINAPI IDirect3DRMMeshImpl_AddRef(IDirect3DRMMesh* iface) IDirect3DRMMeshImpl *This = impl_from_IDirect3DRMMesh(iface); ULONG ref = InterlockedIncrement(&This->ref); - TRACE("(%p): AddRef from %d\n", This, ref - 1); + TRACE("(%p)->(): new ref = %d\n", This, ref); return ref; } @@ -2159,7 +2159,7 @@ static ULONG WINAPI IDirect3DRMMeshImpl_Release(IDirect3DRMMesh* iface) IDirect3DRMMeshImpl *This = impl_from_IDirect3DRMMesh(iface); ULONG ref = InterlockedDecrement(&This->ref); - TRACE("(%p): ReleaseRef to %d\n", This, ref); + TRACE("(%p)->(): new ref = %d\n", This, ref); if (!ref) HeapFree(GetProcessHeap(), 0, This);