kernel32/tests: Don't use 0xaa to avoid any confusion when running with +heap.

This commit is contained in:
Francois Gouget 2008-03-05 12:04:43 +01:00 committed by Alexandre Julliard
parent c099b40509
commit 508d58c210

View File

@ -1369,7 +1369,7 @@ static void test_OpenProcess(void)
hproc = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, GetCurrentProcessId());
memset(&info, 0xaa, sizeof(info));
memset(&info, 0xcc, sizeof(info));
ok(VirtualQueryEx(hproc, addr1, &info, sizeof(info)) == sizeof(info),
"VirtualQueryEx error %d\n", GetLastError());