kernel32/tests: Fix the spelling of a comment.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2022-04-27 15:22:38 +02:00 committed by Alexandre Julliard
parent 7d2eecd341
commit c6c3cdc697
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ static void test_HeapCreate(void)
ok( !!heap, "HeapCreate failed, error %lu\n", GetLastError() );
ok( !((ULONG_PTR)heap & 0xffff), "wrong heap alignment\n" );
/* theshold between failure and success varies, and w7pro64 has a much larger overhead. */
/* threshold between failure and success varies, and w7pro64 has a much larger overhead. */
ptr = HeapAlloc( heap, 0, alloc_size - (0x400 + 0x100 * sizeof(void *)) );
ok( !!ptr, "HeapAlloc failed, error %lu\n", GetLastError() );