Commit f6fb9523 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

dsound/tests: Make sure to use a return value (LLVM/Clang).

parent 273065ce
......@@ -93,8 +93,9 @@ static void IDirectSoundFullDuplex_test(LPDIRECTSOUNDFULLDUPLEX dsfdo,
ok(rc==DS_OK,"IDirectSoundFullDuplex_QueryInterface(IID_IDirectSoundFullDuplex) "
"failed: %08x\n",rc);
if (rc==DS_OK) {
ok (dsfdo==dsfd, "different interfaces\n");
ok(dsfdo==dsfd, "different interfaces\n");
ref=IDirectSound8_Release(dsfd);
ok(ref==1, "IDirectSoundFullDuplex_Release() has %d references, should have 1\n", ref);
}
ref=IDirectSoundFullDuplex_Release(dsfdo);
......
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