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

Francois Gouget fgouget at free.fr
Thu Jul 6 05:22:47 CDT 2017


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 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 3d75cf1823c..4a3c7a81700 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();
-- 
2.13.2




More information about the wine-patches mailing list