Commit 9e070a61 authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent b7123581
...@@ -57,7 +57,7 @@ static void test_VirtualAllocEx(void) ...@@ -57,7 +57,7 @@ static void test_VirtualAllocEx(void)
{ {
const unsigned int alloc_size = 1<<15; const unsigned int alloc_size = 1<<15;
char *src, *dst; char *src, *dst;
unsigned long bytes_written = 0, bytes_read = 0, i; SIZE_T bytes_written = 0, bytes_read = 0, i;
void *addr1, *addr2; void *addr1, *addr2;
BOOL b; BOOL b;
DWORD old_prot; DWORD old_prot;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment