[PATCH] msvcirt/tests: Fix the spelling of a couple of ok() messages.

Francois Gouget fgouget at free.fr
Mon Sep 21 11:36:53 CDT 2020


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/msvcirt/tests/msvcirt.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcirt/tests/msvcirt.c b/dlls/msvcirt/tests/msvcirt.c
index 7bb8bdcf738..0b9ce68257e 100644
--- a/dlls/msvcirt/tests/msvcirt.c
+++ b/dlls/msvcirt/tests/msvcirt.c
@@ -7978,7 +7978,7 @@ static void test_fstream(void)
 
     /* make sure that OPENMODE_in is not implied */
     ok(_lseek(pfb->fd, 0, SEEK_SET) == 0, "_lseek failed\n");
-    ok(_read(pfb->fd, st, 1) == -1, "_read succeded on OPENMODE_out only fstream\n");
+    ok(_read(pfb->fd, st, 1) == -1, "_read succeeded on OPENMODE_out only fstream\n");
 
     /* reopen the file for reading */
     call_func1(p_fstream_vbase_dtor, &fs);
@@ -8002,7 +8002,7 @@ static void test_fstream(void)
 
     /* make sure that OPENMODE_out is not implied */
     ok(_lseek(pfb->fd, 0, SEEK_SET) == 0, "_lseek failed\n");
-    ok(_write(pfb->fd, "blabla", 6) == -1, "_write succeded on OPENMODE_in fstream\n");
+    ok(_write(pfb->fd, "blabla", 6) == -1, "_write succeeded on OPENMODE_in fstream\n");
 
     /* cleanup */
     call_func1(p_fstream_vbase_dtor, &fs);
-- 
2.20.1




More information about the wine-devel mailing list