From 72f86b85b95f255b6f05879c48570a91df4782f6 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Sat, 22 Oct 2005 11:51:52 +0000 Subject: [PATCH] fix bug in user32_winetest now it runs 43 clipboard tests instead of 39 svn path=/trunk/; revision=18672 --- reactos/regtests/winetests/user32/clipboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/regtests/winetests/user32/clipboard.c b/reactos/regtests/winetests/user32/clipboard.c index 5f90e7b0ff2..3c9456161d3 100755 --- a/reactos/regtests/winetests/user32/clipboard.c +++ b/reactos/regtests/winetests/user32/clipboard.c @@ -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)