kernel32/tests: Use the correct SIZE_T type instead of unsigned long.

This commit is contained in:
Alexandre Julliard 2009-01-03 20:21:43 +01:00
parent b712358152
commit 9e070a6108
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ static void test_VirtualAllocEx(void)
{
const unsigned int alloc_size = 1<<15;
char *src, *dst;
unsigned long bytes_written = 0, bytes_read = 0, i;
SIZE_T bytes_written = 0, bytes_read = 0, i;
void *addr1, *addr2;
BOOL b;
DWORD old_prot;