kernel32: Fix a typo.

This commit is contained in:
Dmitry Timoshkov 2006-12-22 17:05:45 +08:00 committed by Alexandre Julliard
parent 496fd1dc56
commit efb1e8eb75

View file

@ -416,7 +416,7 @@ START_TEST(loader)
start = (const char *)hlib + section.VirtualAddress + section.PointerToRawData + section.SizeOfRawData;
size = ALIGN_SIZE((ULONG_PTR)start, si.dwPageSize) - (ULONG_PTR)start;
ok(memcmp(start, filler, size), "%d: alignment should not be not cleared\n", i);
ok(memcmp(start, filler, size), "%d: alignment should not be cleared\n", i);
}
}