Commit cd6516eb authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

sti/tests: Remove useless cast to self.

parent b64511c0
...@@ -150,7 +150,7 @@ static void test_version_flag_versus_aw(void) ...@@ -150,7 +150,7 @@ static void test_version_flag_versus_aw(void)
if (SUCCEEDED(hr)) if (SUCCEEDED(hr))
{ {
ok(pUnknown == (IUnknown*)pStiW, "created interface was not IID_IStillImageW\n"); ok(pUnknown == (IUnknown*)pStiW, "created interface was not IID_IStillImageW\n");
IUnknown_Release((IUnknown*)pUnknown); IUnknown_Release(pUnknown);
} }
IUnknown_Release((IUnknown*)pStiW); IUnknown_Release((IUnknown*)pStiW);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment