Commit c28ffeeb authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

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

parent 6055d04f
......@@ -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
......
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