rpcrt4/tests: Make dummy_Release() static.

This commit is contained in:
Francois Gouget 2009-06-05 08:15:44 +02:00 committed by Alexandre Julliard
parent 925cd00cd1
commit 47be6e8379
1 changed files with 1 additions and 1 deletions

View File

@ -685,7 +685,7 @@ static ULONG WINAPI dummy_AddRef(LPUNKNOWN iface)
return InterlockedIncrement( &this->ref );
}
ULONG WINAPI dummy_Release(LPUNKNOWN iface)
static ULONG WINAPI dummy_Release(LPUNKNOWN iface)
{
struct dummy_unknown *this = (struct dummy_unknown *)iface;
return InterlockedDecrement( &this->ref );