From: caro Date: Wed, 9 Dec 2009 08:20:37 +0000 (+0000) Subject: fix parenthesis order. Thanks, vc++ !! :p X-Git-Tag: submit/2.0alpha-wayland/20121127.222009~1350 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b319df3185f00476ecb3b74155e061e949ab9366;p=profile%2Fivi%2Feina.git fix parenthesis order. Thanks, vc++ !! :p git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@44316 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/include/eina_safety_checks.h b/src/include/eina_safety_checks.h index 1741678..f3c183d 100644 --- a/src/include/eina_safety_checks.h +++ b/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)