Commit 09fc4e80 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

fusion/tests: Fix a test failure on Win64.

parent a89bd3f5
...@@ -168,7 +168,11 @@ static void test_GetCachePath(void) ...@@ -168,7 +168,11 @@ static void test_GetCachePath(void)
if (hr == S_OK) if (hr == S_OK)
{ {
lstrcpyA(nativeimgA, "NativeImages_"); lstrcpyA(nativeimgA, "NativeImages_");
#ifdef _WIN64
lstrcpyA(zapfmtA, "%s\\%s\\%s%s_64");
#else
lstrcpyA(zapfmtA, "%s\\%s\\%s%s_32"); lstrcpyA(zapfmtA, "%s\\%s\\%s%s_32");
#endif
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment