Make GCC happy.
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Fri, 13 Jan 2017 00:13:38 +0000 (00:13 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Fri, 13 Jan 2017 00:13:38 +0000 (00:13 +0000)
svn path=/trunk/; revision=73528

rostests/apitests/shlwapi/PathIsUNC.c

index a8309ac..5f10276 100644 (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)