Commit 29f57999 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Don't print an error when architecture is set to win64 and the app is 64-bit.

parent ff8c79e4
......@@ -1122,7 +1122,7 @@ size_t server_init_thread( void *entry_point )
if (!strcmp( arch, "win32" ) && (is_win64 || is_wow64))
fatal_error( "WINEARCH set to win32 but '%s' is a 64-bit installation.\n",
wine_get_config_dir() );
if (!strcmp( arch, "win64" ) && !is_wow64)
if (!strcmp( arch, "win64" ) && !is_win64 && !is_wow64)
fatal_error( "WINEARCH set to win64 but '%s' is a 32-bit installation.\n",
wine_get_config_dir() );
}
......
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