Author: hbelusca Date: Fri Jan 13 00:33:46 2017 New Revision: 73531
URL: http://svn.reactos.org/svn/reactos?rev=73531&view=rev Log: 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).
Modified: trunk/rostests/apitests/shlwapi/PathIsUNC.c
Modified: trunk/rostests/apitests/shlwapi/PathIsUNC.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/shlwapi/PathIsUNC... ============================================================================== --- trunk/rostests/apitests/shlwapi/PathIsUNC.c [iso-8859-1] (original) +++ trunk/rostests/apitests/shlwapi/PathIsUNC.c [iso-8859-1] Fri Jan 13 00:33:46 2017 @@ -25,7 +25,7 @@ #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)