rpcrt4/tests: Make dummy_Release() static.
This commit is contained in:
parent
925cd00cd1
commit
47be6e8379
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue