d3drm/tests: Make get_refcount return ULONG instead of int.

This commit is contained in:
Aaryaman Vasishta 2015-04-13 22:29:02 +05:30 committed by Alexandre Julliard
parent 4415171ab6
commit 5bbbf0aeb4
1 changed files with 1 additions and 1 deletions

View File

@ -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 );