dsound/tests: Fix typos in tests.
This commit is contained in:
parent
f0bed78455
commit
e3a1593652
|
@ -759,7 +759,7 @@ static HRESULT test_secondary(LPGUID lpGuid)
|
|||
wfxe.Format.cbSize = sizeof(wfxe) - sizeof(wfx) + 1;
|
||||
|
||||
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
||||
ok(DSERR_CONTROLUNAVAIL && !secondary,
|
||||
ok(rc==DSERR_CONTROLUNAVAIL && !secondary,
|
||||
"IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
|
||||
rc, secondary);
|
||||
if (secondary)
|
||||
|
|
|
@ -753,7 +753,7 @@ static HRESULT test_secondary8(LPGUID lpGuid)
|
|||
wfxe.Format.cbSize = sizeof(wfxe) - sizeof(wfx) + 1;
|
||||
|
||||
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
||||
ok(DSERR_CONTROLUNAVAIL && !secondary,
|
||||
ok(rc==DSERR_CONTROLUNAVAIL && !secondary,
|
||||
"IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
|
||||
rc, secondary);
|
||||
if (secondary)
|
||||
|
|
Loading…
Reference in New Issue