user32: Fix a test of GetMouseMovePointsEx.

This commit is contained in:
Stefan Leichter 2008-02-23 09:43:44 +01:00 committed by Alexandre Julliard
parent 4cd6ef739d
commit 0640dbb620
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((0 <= retval) && (retval <= count), "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
ok(MYERROR == GetLastError(),
"expected error %d, got %u\n", MYERROR, GetLastError());
}