Commit 682ad1c1 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

xaudio2/tests: Fix the IID_IXAPO query.

parent 8310d9cb
......@@ -335,7 +335,7 @@ static void test_simple_streaming(IXAudio2 *xa)
#endif
ok(hr == S_OK, "Got hr %#lx.\n", hr);
hr = IUnknown_QueryInterface(vumeter, &IID_IXAPO27, (void **)&xapo);
hr = IUnknown_QueryInterface(vumeter, xaudio27 ? &IID_IXAPO27 : &IID_IXAPO, (void **)&xapo);
ok(hr == S_OK, "Got hr %#lx.\n", hr);
IXAPO_Release(xapo);
......
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