Fabian Maurer : ucrtbase/tests: Properly use quotes.

Alexandre Julliard julliard at winehq.org
Mon Nov 27 15:05:39 CST 2017


Module: wine
Branch: master
Commit: a004e31ff0b55d60f2acdb05177a12ccb99ade88
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a004e31ff0b55d60f2acdb05177a12ccb99ade88

Author: Fabian Maurer <dark.shadow4 at web.de>
Date:   Sun Nov 26 12:49:36 2017 +0100

ucrtbase/tests: Properly use quotes.

Signed-off-by: Fabian Maurer <dark.shadow4 at web.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ucrtbase/tests/string.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ucrtbase/tests/string.c b/dlls/ucrtbase/tests/string.c
index 96de238..ab86f46 100644
--- a/dlls/ucrtbase/tests/string.c
+++ b/dlls/ucrtbase/tests/string.c
@@ -36,7 +36,7 @@
 
 #define CHECK_EXPECT2(func) \
     do { \
-        ok(expect_ ##func, "unexpected call " #func "\n"); \
+        ok(expect_ ##func, "unexpected call " #func "\n"); \
         called_ ## func = TRUE; \
     }while(0)
 
@@ -48,7 +48,7 @@
 
 #define CHECK_CALLED(func) \
     do { \
-        ok(called_ ## func, "expected " #func "\n"); \
+        ok(called_ ## func, "expected " #func "\n"); \
         expect_ ## func = called_ ## func = FALSE; \
     }while(0)
 




More information about the wine-cvs mailing list