mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
fix bug in user32_winetest
now it runs 43 clipboard tests instead of 39 svn path=/trunk/; revision=18672
This commit is contained in:
parent
fd0fbedd9e
commit
72f86b85b9
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ static BOOL is_win9x = FALSE;
|
||||||
{ \
|
{ \
|
||||||
if (!is_win9x) \
|
if (!is_win9x) \
|
||||||
ok(GetLastError() == expected_error, \
|
ok(GetLastError() == expected_error, \
|
||||||
"Last error should be set to %d, not %ld\n", \
|
"Last error should be set to %ld, not %ld\n", \
|
||||||
expected_error, GetLastError()); \
|
(DWORD) expected_error, (DWORD) GetLastError()); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
static void test_ClipboardOwner(void)
|
static void test_ClipboardOwner(void)
|
||||||
|
|
Loading…
Reference in a new issue