fusion/tests: Fix a test failure on Win64.

This commit is contained in:
Paul Vriens 2009-02-06 08:31:48 +01:00 committed by Alexandre Julliard
parent a89bd3f562
commit 09fc4e8063

View file

@ -168,7 +168,11 @@ static void test_GetCachePath(void)
if (hr == S_OK)
{
lstrcpyA(nativeimgA, "NativeImages_");
#ifdef _WIN64
lstrcpyA(zapfmtA, "%s\\%s\\%s%s_64");
#else
lstrcpyA(zapfmtA, "%s\\%s\\%s%s_32");
#endif
}
else
{