Add extra-parenthesing.

svn path=/trunk/; revision=60321
This commit is contained in:
Hermès Bélusca-Maïto 2013-09-22 19:30:00 +00:00
parent 2c7388a0b1
commit 41539da879

View file

@ -27,9 +27,9 @@
ExceptionStatus = _SEH2_GetExceptionCode(); \ ExceptionStatus = _SEH2_GetExceptionCode(); \
} \ } \
_SEH2_END; \ _SEH2_END; \
ok(ExceptionStatus == ExpectedStatus, \ ok(ExceptionStatus == (ExpectedStatus), \
"Exception 0x%08lx, expected 0x%08lx\n", \ "Exception 0x%08lx, expected 0x%08lx\n", \
ExceptionStatus, ExpectedStatus); \ ExceptionStatus, (ExpectedStatus)); \
} }
#endif /* _APITEST_H */ #endif /* _APITEST_H */