Author: spetreolle
Date: Sat Oct 3 21:41:10 2015
New Revision: 69434
URL:
http://svn.reactos.org/svn/reactos?rev=69434&view=rev
Log:
[user32_apitest]
0x%lu does not mean anything correct.
Modified:
trunk/rostests/apitests/user32/SetCursorPos.c
Modified: trunk/rostests/apitests/user32/SetCursorPos.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/user32/SetCursor…
==============================================================================
--- trunk/rostests/apitests/user32/SetCursorPos.c [iso-8859-1] (original)
+++ trunk/rostests/apitests/user32/SetCursorPos.c [iso-8859-1] Sat Oct 3 21:41:10 2015
@@ -180,13 +180,13 @@
ret = GetCursorPos(&curPoint);
ok(ret == FALSE, "GetCursorPos should fail\n");
- ok(GetLastError() == ERROR_ACCESS_DENIED, "Expected ERROR_ACCESS_DENIED got
0x%lu\n", GetLastError());
+ ok(GetLastError() == ERROR_ACCESS_DENIED, "Expected ERROR_ACCESS_DENIED got
0x%lx\n", GetLastError());
SetLastError(0xdeadbeef);
ret = SetCursorPos(2,2);
ok(ret == FALSE, "SetCursorPos should fail\n");
- ok(GetLastError() == 0xdeadbeef, "Wrong last error, got 0x%lu\n",
GetLastError());
+ ok(GetLastError() == 0xdeadbeef, "Wrong last error, got 0x%lx\n",
GetLastError());
ret = GetCursorPos(&curPoint);
ok(ret == FALSE, "GetCursorPos should fail\n");
@@ -202,4 +202,4 @@
{
Test_DesktopAccess();
Test_SetCursorPos();
-}
+}