From: Aaryaman Vasishta Subject: [PATCH 1/2] d3drm/tests: Make get_refcount return ULONG instead of int. Message-Id: <1428944342-15987-1-git-send-email-jem456.vasishta@gmail.com> Date: Mon, 13 Apr 2015 22:29:02 +0530 --- dlls/d3drm/tests/d3drm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3drm/tests/d3drm.c b/dlls/d3drm/tests/d3drm.c index 2f154f9..f089707 100644 --- a/dlls/d3drm/tests/d3drm.c +++ b/dlls/d3drm/tests/d3drm.c @@ -33,7 +33,7 @@ ok(count == rc_new, "Invalid refcount. Expected %d got %d\n", rc_new, count); \ } -static int get_refcount(IUnknown *object) +static ULONG get_refcount(IUnknown *object) { IUnknown_AddRef( object ); return IUnknown_Release( object ); -- 1.9.3 (Apple Git-50)