Module: wine Branch: master Commit: 4371946d949d547f01059d16b31e9e73e39637a3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4371946d949d547f01059d16b3...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Thu Jul 30 11:10:57 2015 +0200
d2d1: Fix the TRACE in d2d_bitmap_Release().
---
dlls/d2d1/bitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/d2d1/bitmap.c b/dlls/d2d1/bitmap.c index be03b66..080663c 100644 --- a/dlls/d2d1/bitmap.c +++ b/dlls/d2d1/bitmap.c @@ -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) {