kernel32/tests: Fix compile on powerpc.

This commit is contained in:
Austin English 2008-12-31 09:20:06 -06:00 committed by Alexandre Julliard
parent 5c8978c58b
commit e9569d9c4e
1 changed files with 2 additions and 0 deletions

View File

@ -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