Make GCC happy.

svn path=/trunk/; revision=73528
This commit is contained in:
Hermès Bélusca-Maïto 2017-01-13 00:13:38 +00:00
parent c785b8f077
commit 58c3357ad1

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 %S to be %d, was %d\n", (str), (exp), ret); \
ok(ret == (exp), "Expected %ls to be %d, was %d\n", (str), (exp), ret); \
} while (0)
START_TEST(isuncpath)