From: Hermès Bélusca-Maïto Date: Fri, 13 Jan 2017 00:33:46 +0000 (+0000) Subject: Use wine_dbgstr_w as Jared did originally (I hate this macro because it displays... X-Git-Tag: ReactOS-0.4.4-FOSDEM2017~8^2~68 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=633f34d7c48b22988fe88292c654a6b819530985;ds=sidebyside 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 --- diff --git a/rostests/apitests/shlwapi/PathIsUNC.c b/rostests/apitests/shlwapi/PathIsUNC.c index 7f609849c7c..ef37c568222 100644 --- a/rostests/apitests/shlwapi/PathIsUNC.c +++ b/rostests/apitests/shlwapi/PathIsUNC.c @@ -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)