kernel32/tests: Re-balance the curly parentheses so winapi_check can parse the file.

This commit is contained in:
Francois Gouget 2007-08-04 03:23:56 +02:00 committed by Alexandre Julliard
parent 83340ec0e4
commit f74d2a8fbf
1 changed files with 3 additions and 2 deletions

View File

@ -40,10 +40,11 @@ static const struct
static IMAGE_NT_HEADERS nt_header =
{
IMAGE_NT_SIGNATURE, /* Signature */
{
#if defined __i386__
{ IMAGE_FILE_MACHINE_I386, /* Machine */
IMAGE_FILE_MACHINE_I386, /* Machine */
#elif defined __x86_64__
{ IMAGE_FILE_MACHINE_AMD64, /* Machine */
IMAGE_FILE_MACHINE_AMD64, /* Machine */
#else
# error You must specify the machine type
#endif