mirror of
https://github.com/reactos/wine.git
synced 2024-12-02 16:57:26 +00:00
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:
parent
bea5c0ce2b
commit
2dada69909
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user