Commit 8f369c9e authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32/tests: Use ARMv7 for PE images.

parent b6169510
......@@ -1758,7 +1758,7 @@ static BOOL create_fake_dll( LPCSTR filename )
#elif defined __sparc__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_SPARC;
#elif defined __arm__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARM;
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARMV7;
#else
# error You must specify the machine type
#endif
......
......@@ -57,7 +57,7 @@ static IMAGE_NT_HEADERS nt_header =
#elif defined __sparc__
IMAGE_FILE_MACHINE_SPARC, /* Machine */
#elif defined __arm__
IMAGE_FILE_MACHINE_ARM, /* Machine */
IMAGE_FILE_MACHINE_ARMV7, /* 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