Use wine_dbgstr_w as Jared did originally (I hate this macro because it displays strings in 'C'-language form instead of in natural way).

svn path=/trunk/; revision=73531
This commit is contained in:
Hermès Bélusca-Maïto 2017-01-13 00:33:46 +00:00
parent ee9c290085
commit 633f34d7c4

View file

@ -25,7 +25,7 @@ static BOOL (WINAPI *pPathIsUNC)(PCWSTR);
#define CALL_ISUNC(exp, str) \
do { \
BOOL ret = pPathIsUNC((str)); \
ok(ret == (exp), "Expected %ls to be %d, was %d\n", (str), (exp), ret); \
ok(ret == (exp), "Expected %s to be %d, was %d\n", wine_dbgstr_w((str)), (exp), ret); \
} while (0)
START_TEST(isuncpath)