sti/tests: Remove useless cast to self.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-03-15 20:37:17 +01:00 committed by Alexandre Julliard
parent b64511c00a
commit cd6516eb94
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ static void test_version_flag_versus_aw(void)
if (SUCCEEDED(hr))
{
ok(pUnknown == (IUnknown*)pStiW, "created interface was not IID_IStillImageW\n");
IUnknown_Release((IUnknown*)pUnknown);
IUnknown_Release(pUnknown);
}
IUnknown_Release((IUnknown*)pStiW);
}