From: Alfred Agrell floating@muncher.se
--- dlls/dsound/mixer.c | 1 - dlls/dsound/tests/dsound.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/dlls/dsound/mixer.c b/dlls/dsound/mixer.c index bf05805221b..bf88e94eafd 100644 --- a/dlls/dsound/mixer.c +++ b/dlls/dsound/mixer.c @@ -226,7 +226,6 @@ void DSOUND_CheckEvent(const IDirectSoundBufferImpl *dsb, DWORD playpos, int len TRACE("Signalling %p\n", dsb->notifies[left].hEventNotify); SetEvent(dsb->notifies[left].hEventNotify); } - return; }
for(first = 0; first < dsb->nrofnotifies && dsb->notifies[first].dwOffset == DSBPN_OFFSETSTOP; ++first) diff --git a/dlls/dsound/tests/dsound.c b/dlls/dsound/tests/dsound.c index 1518ff00073..81c5752c166 100644 --- a/dlls/dsound/tests/dsound.c +++ b/dlls/dsound/tests/dsound.c @@ -1780,7 +1780,7 @@ static void test_notifications_noloop(LPGUID lpGuid) ok(status == DSBSTATUS_PLAYING,"got %08lx\n", status);
wait = WaitForMultipleObjects(2, handles, FALSE, 1000); - todo_wine ok(wait == WAIT_OBJECT_0+1, "Got unexpected notification order or timeout: %lu\n", wait); + ok(wait == WAIT_OBJECT_0+1, "Got unexpected notification order or timeout: %lu\n", wait); rc = IDirectSoundBuffer_GetStatus(buf, &status); ok(rc == DS_OK,"Failed %08lx\n",rc); ok(status == 0,"got %08lx\n", status);