Commit 4371946d authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d2d1: Fix the TRACE in d2d_bitmap_Release().

parent c2135dd4
......@@ -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)
{
......
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