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)