Francois Gouget : kernel32/tests: Fix a signed/unsigned int mismatch.

Alexandre Julliard julliard at wine.codeweavers.com
Tue May 29 08:05:29 CDT 2007


Module: wine
Branch: master
Commit: e5b1ca4cf538cbe0418df23748253b2f018d7afb
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e5b1ca4cf538cbe0418df23748253b2f018d7afb

Author: Francois Gouget <fgouget at free.fr>
Date:   Sun May 27 13:18:36 2007 +0200

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

---

 dlls/kernel32/tests/toolhelp.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel32/tests/toolhelp.c b/dlls/kernel32/tests/toolhelp.c
index 628626a..ab067d1 100644
--- a/dlls/kernel32/tests/toolhelp.c
+++ b/dlls/kernel32/tests/toolhelp.c
@@ -227,7 +227,8 @@ static void test_module(DWORD pid, const char* expected[], unsigned num_expected
     THREADENTRY32       te;
     MODULEENTRY32       me;
     unsigned            found[32];
-    int                 i, num = 0;
+    unsigned            i;
+    int                 num = 0;
 
     ok(NUM_OF(found) >= num_expected, "Internal: bump found[] size\n");
 




More information about the wine-cvs mailing list