Commit c0e4e2da authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

winmm/tests: Fix some failures on Vista and W2K8.

parent 6c0467c1
......@@ -740,8 +740,9 @@ static void mixer_test_deviceW(int device)
mmsys_error(rc));
rc=mixerGetDevCapsW(device,&capsW,4);
ok(rc==MMSYSERR_NOERROR,
"mixerGetDevCapsW: MMSYSERR_NOERROR expected, got %s\n",
ok(rc==MMSYSERR_NOERROR ||
rc==MMSYSERR_INVALPARAM, /* Vista and W2K8 */
"mixerGetDevCapsW: MMSYSERR_NOERROR or MMSYSERR_INVALPARAM expected, got %s\n",
mmsys_error(rc));
rc=mixerGetDevCapsW(device,&capsW,sizeof(capsW));
......
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