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

This commit is contained in:
Francois Gouget 2007-05-27 13:18:36 +02:00 committed by Alexandre Julliard
parent 149ac3fcdc
commit e5b1ca4cf5
1 changed files with 2 additions and 1 deletions

View File

@ -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");