testsuite: ffitest.h: Parenthesize the CHECK macro
authorJosh Triplett <josh@joshtriplett.org>
Sun, 16 Mar 2014 23:22:58 +0000 (16:22 -0700)
committerJosh Triplett <josh@joshtriplett.org>
Mon, 17 Mar 2014 03:34:46 +0000 (20:34 -0700)
testsuite/libffi.call/ffitest.h

index 1919375..752fe55 100644 (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__