psapi/tests: Fix a signed/unsigned int mismatch.

Francois Gouget fgouget at free.fr
Sun May 27 18:17:28 CDT 2007


---
 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);
-- 
1.4.4.4




More information about the wine-patches mailing list