Commit 2dada699 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent bea5c0ce
...@@ -443,11 +443,11 @@ static void test_sbheap(void) ...@@ -443,11 +443,11 @@ static void test_sbheap(void)
mem = malloc(1); mem = malloc(1);
ok(mem != NULL, "malloc failed\n"); 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); mem = realloc(mem, 10);
ok(mem != NULL, "realloc failed\n"); 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"); ok(_set_sbh_threshold(0), "_set_sbh_threshold failed\n");
threshold = _get_sbh_threshold(); threshold = _get_sbh_threshold();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment