Francois Gouget : mmdevapi/tests: Fix the spelling of ok() messages.

Alexandre Julliard julliard at winehq.org
Mon Sep 30 16:19:06 CDT 2019


Module: wine
Branch: master
Commit: 0cab8eb30dbb2168695d57fd3699b293b9e4e5f9
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=0cab8eb30dbb2168695d57fd3699b293b9e4e5f9

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Sep 30 01:39:19 2019 +0200

mmdevapi/tests: Fix the spelling of ok() messages.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mmdevapi/tests/propstore.c | 2 +-
 dlls/mmdevapi/tests/render.c    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/mmdevapi/tests/propstore.c b/dlls/mmdevapi/tests/propstore.c
index bbd4ffe10f..bdba19d158 100644
--- a/dlls/mmdevapi/tests/propstore.c
+++ b/dlls/mmdevapi/tests/propstore.c
@@ -111,7 +111,7 @@ static void test_getat(IPropertyStore *store)
     hr = IPropertyStore_GetCount(store, &propcount);
 
     ok(hr == S_OK, "Failed with %08x\n", hr);
-    ok(propcount > 0, "Propcount %d should be greather than zero\n", propcount);
+    ok(propcount > 0, "Propcount %d should be greater than zero\n", propcount);
 
     for (prop = 0; prop < propcount; prop++) {
 	hr = IPropertyStore_GetAt(store, prop, &pkey);
diff --git a/dlls/mmdevapi/tests/render.c b/dlls/mmdevapi/tests/render.c
index a4e94b15e0..7de6d9adc9 100644
--- a/dlls/mmdevapi/tests/render.c
+++ b/dlls/mmdevapi/tests/render.c
@@ -744,7 +744,7 @@ static void test_padding(void)
         /* win10 appears not to clear the buffer */
         for(i = 0; i < psize * pwfx->nBlockAlign; ++i){
             if(buf[i] != silence){
-                ok(0, "buffer has data in it already, i: %u, valu: %f\n", i, *((float*)buf));
+                ok(0, "buffer has data in it already, i: %u, value: %f\n", i, *((float*)buf));
                 break;
             }
         }




More information about the wine-cvs mailing list