mirror of
https://github.com/reactos/reactos.git
synced 2025-08-01 23:42:56 +00:00
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:
parent
ee9c290085
commit
633f34d7c4
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue