d2d1: Fix the TRACE in d2d_bitmap_Release().

This commit is contained in:
Henri Verbeet 2015-07-30 11:10:57 +02:00 committed by Alexandre Julliard
parent c2135dd498
commit 4371946d94
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ static ULONG STDMETHODCALLTYPE d2d_bitmap_Release(ID2D1Bitmap *iface)
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap(iface);
ULONG refcount = InterlockedDecrement(&bitmap->refcount);
TRACE("%p increasing refcount to %u.\n", iface, refcount);
TRACE("%p decreasing refcount to %u.\n", iface, refcount);
if (!refcount)
{