From abe919050124c55ff32eaf816198a20321d5c1bb Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Wed, 9 Dec 2009 08:20:37 +0000 Subject: [PATCH] fix parenthesis order. Thanks, vc++ !! :p SVN revision: 44316 --- legacy/eina/src/include/eina_safety_checks.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/eina/src/include/eina_safety_checks.h b/legacy/eina/src/include/eina_safety_checks.h index 1741678a38..f3c183d4f0 100644 --- a/legacy/eina/src/include/eina_safety_checks.h +++ b/legacy/eina/src/include/eina_safety_checks.h @@ -172,7 +172,7 @@ EAPI extern Eina_Error EINA_ERROR_SAFETY_FAILED; do { if (0 && (exp)) (void)val; } while (0) #define EINA_SAFETY_ON_FALSE_RETURN(exp) \ - do { (void)((!exp)); } while (0) + do { (void)(!(exp)); } while (0) #define EINA_SAFETY_ON_FALSE_RETURN_VAL(exp, val) \ do { if (0 && !(exp)) (void)val; } while (0)