Francois Gouget : psapi/tests: Fix a signed/unsigned int mismatch.
Module: wine Branch: master Commit: 7071a0105f8921055f7ca0cb263791a6d85a9751 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7071a0105f8921055f7ca0cb26... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon May 28 01:17:28 2007 +0200 psapi/tests: Fix a signed/unsigned int mismatch. --- dlls/psapi/tests/psapi_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/psapi/tests/psapi_main.c b/dlls/psapi/tests/psapi_main.c index 76db0de..1978fd4 100644 --- a/dlls/psapi/tests/psapi_main.c +++ b/dlls/psapi/tests/psapi_main.c @@ -236,7 +236,7 @@ static void test_ws_functions(void) PSAPI_WS_WATCH_INFORMATION wswi[4096]; ULONG_PTR pages[4096]; char *addr; - int i; + unsigned int i; todo_wine w32_err(pEmptyWorkingSet(NULL), ERROR_INVALID_HANDLE); todo_wine w32_err(pEmptyWorkingSet(hpSR), ERROR_ACCESS_DENIED);
participants (1)
-
Alexandre Julliard