kernel32/tests: Fix a problem revealed by compilation in 64-bit mode.

oldstable
Dmitry Timoshkov 2007-05-24 17:15:03 +09:00 committed by Alexandre Julliard
parent 6055d04f07
commit c28ffeeb9a
1 changed files with 3 additions and 1 deletions

View File

@ -40,8 +40,10 @@ static const struct
static IMAGE_NT_HEADERS nt_header =
{
IMAGE_NT_SIGNATURE, /* Signature */
#ifdef __i386__
#if defined __i386__
{ IMAGE_FILE_MACHINE_I386, /* Machine */
#elif defined __x86_64__
{ IMAGE_FILE_MACHINE_AMD64, /* Machine */
#else
# error You must specify the machine type
#endif