Author: hbelusca Date: Fri Jan 13 00:13:38 2017 New Revision: 73528
URL: http://svn.reactos.org/svn/reactos?rev=73528&view=rev Log: Make GCC happy.
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:13:38 2017 @@ -25,7 +25,7 @@ #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)