Commit 99c151a1 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

setupapi: Don't confuse ARM with ARM64.

parent 9301c580
......@@ -278,9 +278,9 @@ static BOOL build_fake_dll( HANDLE file, const WCHAR *name )
#if defined __x86_64__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_AMD64;
#elif defined __aarch64__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARMNT;
#elif defined __arm__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARM64;
#elif defined __arm__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARMNT;
#elif defined __powerpc__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_POWERPC;
#else
......
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