testsuite: ffitest.h: Parenthesize the CHECK macro

This commit is contained in:
Josh Triplett
2014-03-16 16:22:58 -07:00
parent 5695ec1444
commit 0d9cce8edb

View File

@@ -15,7 +15,7 @@
#define MAX_ARGS 256
#define CHECK(x) !(x) ? (abort(), 1) : 0
#define CHECK(x) (!(x) ? (abort(), 1) : 0)
/* Define macros so that compilers other than gcc can run the tests. */
#undef __UNUSED__