Commit 504b01cb authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dswave/tests: Use a void* instead of void** outer IUnknown argument.

parent 33e0ca45
......@@ -50,7 +50,7 @@ static void test_COM(void)
HRESULT hr;
/* COM aggregation */
hr = CoCreateInstance(&CLSID_DirectSoundWave, (IUnknown*)&dmo, CLSCTX_INPROC_SERVER,
hr = CoCreateInstance(&CLSID_DirectSoundWave, (IUnknown*)0xdeadbeef, CLSCTX_INPROC_SERVER,
&IID_IUnknown, (void**)&dmo);
ok(hr == CLASS_E_NOAGGREGATION,
"DirectSoundWave create failed: %08x, expected CLASS_E_NOAGGREGATION\n", hr);
......
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