msvcrt/tests: A couple of spelling fixes in ok() messages.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2017-07-06 12:22:47 +02:00 committed by Alexandre Julliard
parent bea5c0ce2b
commit 2dada69909
1 changed files with 2 additions and 2 deletions

View File

@ -443,11 +443,11 @@ static void test_sbheap(void)
mem = malloc(1);
ok(mem != NULL, "malloc failed\n");
ok(!((UINT_PTR)mem & 0xf), "incorrect alignement (%p)\n", mem);
ok(!((UINT_PTR)mem & 0xf), "incorrect alignment (%p)\n", mem);
mem = realloc(mem, 10);
ok(mem != NULL, "realloc failed\n");
ok(!((UINT_PTR)mem & 0xf), "incorrect alignement (%p)\n", mem);
ok(!((UINT_PTR)mem & 0xf), "incorrect alignment (%p)\n", mem);
ok(_set_sbh_threshold(0), "_set_sbh_threshold failed\n");
threshold = _get_sbh_threshold();