user32: Fix a test of GetMouseMovePointsEx failing on platforms winxp and win2k3.

This commit is contained in:
Stefan Leichter 2008-02-21 20:19:43 +01:00 committed by Alexandre Julliard
parent 428ada3c8a
commit ebbc1e781c
1 changed files with 1 additions and 1 deletions

View File

@ -768,7 +768,7 @@ static void test_GetMouseMovePointsEx(void)
count = BUFLIM;
retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, count, GMMP_USE_DISPLAY_POINTS);
todo_wine {
ok(retval == count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
ok(retval <= count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
ok(MYERROR == GetLastError(),
"expected error %d, got %u\n", MYERROR, GetLastError());
}