kernel32/tests: Fix a signed/unsigned int mismatch.
This commit is contained in:
parent
149ac3fcdc
commit
e5b1ca4cf5
|
@ -227,7 +227,8 @@ static void test_module(DWORD pid, const char* expected[], unsigned num_expected
|
||||||
THREADENTRY32 te;
|
THREADENTRY32 te;
|
||||||
MODULEENTRY32 me;
|
MODULEENTRY32 me;
|
||||||
unsigned found[32];
|
unsigned found[32];
|
||||||
int i, num = 0;
|
unsigned i;
|
||||||
|
int num = 0;
|
||||||
|
|
||||||
ok(NUM_OF(found) >= num_expected, "Internal: bump found[] size\n");
|
ok(NUM_OF(found) >= num_expected, "Internal: bump found[] size\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue