fix bug in user32_winetest

now it runs 43 clipboard tests instead of 39

svn path=/trunk/; revision=18672
This commit is contained in:
Christoph von Wittich 2005-10-22 11:51:52 +00:00
parent fd0fbedd9e
commit 72f86b85b9

View file

@ -30,8 +30,8 @@ static BOOL is_win9x = FALSE;
{ \
if (!is_win9x) \
ok(GetLastError() == expected_error, \
"Last error should be set to %d, not %ld\n", \
expected_error, GetLastError()); \
"Last error should be set to %ld, not %ld\n", \
(DWORD) expected_error, (DWORD) GetLastError()); \
} while (0)
static void test_ClipboardOwner(void)