kernel32/tests: Fix compile on powerpc.
This commit is contained in:
parent
5c8978c58b
commit
e9569d9c4e
|
@ -52,6 +52,8 @@ static IMAGE_NT_HEADERS nt_header =
|
||||||
IMAGE_FILE_MACHINE_I386, /* Machine */
|
IMAGE_FILE_MACHINE_I386, /* Machine */
|
||||||
#elif defined __x86_64__
|
#elif defined __x86_64__
|
||||||
IMAGE_FILE_MACHINE_AMD64, /* Machine */
|
IMAGE_FILE_MACHINE_AMD64, /* Machine */
|
||||||
|
#elif defined __powerpc__
|
||||||
|
IMAGE_FILE_MACHINE_POWERPC, /* Machine */
|
||||||
#else
|
#else
|
||||||
# error You must specify the machine type
|
# error You must specify the machine type
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue