Commit 847868fc authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mmdevapi/tests: Fix typos in a few ok() messages.

parent 443130c4
......@@ -414,7 +414,7 @@ static void test_capture(IAudioClient *ac, HANDLE handle, WAVEFORMATEX *wfx)
sum += frames;
}
else if(hr == AUDCLNT_S_BUFFER_EMPTY){
ok(!pad, "resetted GCP %u\n", pad);
ok(!pad, "reset GCP %u\n", pad);
Sleep(180);
}
......@@ -590,7 +590,7 @@ static void test_audioclient(void)
ok(hr == S_OK, "SetEventHandle returns %08x\n", hr);
hr = IAudioClient_Reset(ac);
ok(hr == S_OK, "Reset on a resetted stream returns %08x\n", hr);
ok(hr == S_OK, "Reset on an already reset stream returns %08x\n", hr);
hr = IAudioClient_Stop(ac);
ok(hr == S_FALSE, "Stop on a stopped stream returns %08x\n", hr);
......
......@@ -361,7 +361,7 @@ static void test_audioclient(void)
ok(hr == S_OK, "Reset on an initialized stream returns %08x\n", hr);
hr = IAudioClient_Reset(ac);
ok(hr == S_OK, "Reset on a resetted stream returns %08x\n", hr);
ok(hr == S_OK, "Reset on an already reset stream returns %08x\n", hr);
hr = IAudioClient_Stop(ac);
ok(hr == S_FALSE, "Stop on a stopped stream returns %08x\n", hr);
......@@ -1090,7 +1090,7 @@ static void test_clock(int share)
slept = sum = 0;
hr = IAudioClient_Reset(ac);
ok(hr == S_OK, "Reset on a resetted stream returns %08x\n", hr);
ok(hr == S_OK, "Reset on an already reset stream returns %08x\n", hr);
hr = IAudioClock_GetPosition(acl, &pos, &pcpos);
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
......@@ -1164,7 +1164,7 @@ static void test_clock(int share)
ok(QueryPerformanceCounter(&hpctime0), "PerfCounter unavailable\n");
hr = IAudioClient_Reset(ac);
ok(hr == S_OK, "Reset on a resetted stream returns %08x\n", hr);
ok(hr == S_OK, "Reset on an already reset stream returns %08x\n", hr);
hr = IAudioClient_Start(ac);
ok(hr == S_OK, "Start failed: %08x\n", hr);
......
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