From e5b1ca4cf538cbe0418df23748253b2f018d7afb Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 27 May 2007 13:18:36 +0200 Subject: [PATCH] kernel32/tests: Fix a signed/unsigned int mismatch. --- dlls/kernel32/tests/toolhelp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/kernel32/tests/toolhelp.c b/dlls/kernel32/tests/toolhelp.c index 628626a4982..ab067d183fc 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");