kernel32/tests: Fix a problem revealed by compilation in 64-bit mode.
This commit is contained in:
parent
6055d04f07
commit
c28ffeeb9a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue