Module: wine Branch: master Commit: 2dada6990926c4e2d076cb5e09c5b7f41fee66fa URL: http://source.winehq.org/git/wine.git/?a=commit;h=2dada6990926c4e2d076cb5e09...
Author: Francois Gouget fgouget@free.fr Date: Thu Jul 6 12:22:47 2017 +0200
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
---
dlls/msvcrt/tests/heap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msvcrt/tests/heap.c b/dlls/msvcrt/tests/heap.c index 3d75cf1..4a3c7a8 100644 --- a/dlls/msvcrt/tests/heap.c +++ b/dlls/msvcrt/tests/heap.c @@ -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();