Commit a004e31f authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

ucrtbase/tests: Properly use quotes.

parent 74b50e27
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment