Module: wine Branch: master Commit: 6a6749937bd543aa115d9320cee87d504b2275a5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6a6749937bd543aa115d9320ce...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sun May 2 22:09:46 2010 +0200
winmm/tests: Remove variable start which is not really used from wave_out_test_deviceOut.
---
dlls/winmm/tests/wave.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/dlls/winmm/tests/wave.c b/dlls/winmm/tests/wave.c index 98a16f5..03f4af4 100644 --- a/dlls/winmm/tests/wave.c +++ b/dlls/winmm/tests/wave.c @@ -727,7 +727,6 @@ static void wave_out_test_deviceOut(int device, double duration, }
if (interactive && rc==MMSYSERR_NOERROR) { - DWORD start; trace("Playing %g second %s at %5dx%2dx%d %2d header%s %d loop%s %d bytes %s %s\n",duration, sine ? "440Hz tone" : "silence",pwfx->nSamplesPerSec, pwfx->wBitsPerSample,pwfx->nChannels, headers, headers > 1 ? "s": " ", @@ -748,8 +747,6 @@ static void wave_out_test_deviceOut(int device, double duration, ok(has_volume ? rc==MMSYSERR_NOERROR : rc==MMSYSERR_NOTSUPPORTED, "waveOutSetVolume(%s): rc=%s\n",dev_name(device),wave_out_error(rc));
- start=GetTickCount(); - rc=waveOutWrite(wout, &frags[0], sizeof(frags[0])); ok(rc==MMSYSERR_NOERROR,"waveOutWrite(%s): rc=%s\n", dev_name(device),wave_out_error(rc));