fix bug in user32_winetest
now it runs 43 clipboard tests instead of 39
Modified: trunk/reactos/regtests/winetests/user32/clipboard.c
_____
Modified: trunk/reactos/regtests/winetests/user32/clipboard.c
--- trunk/reactos/regtests/winetests/user32/clipboard.c 2005-10-22
02:27:37 UTC (rev 18671)
+++ trunk/reactos/regtests/winetests/user32/clipboard.c 2005-10-22
11:51:52 UTC (rev 18672)
@@ -30,8 +30,8 @@
{ \
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)