Module: wine Branch: master Commit: a004e31ff0b55d60f2acdb05177a12ccb99ade88 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a004e31ff0b55d60f2acdb0517...
Author: Fabian Maurer dark.shadow4@web.de Date: Sun Nov 26 12:49:36 2017 +0100
ucrtbase/tests: Properly use quotes.
Signed-off-by: Fabian Maurer dark.shadow4@web.de Signed-off-by: Alexandre Julliard julliard@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)