fix parenthesis order. Thanks, vc++ !! :p
authorcaro <caro>
Wed, 9 Dec 2009 08:20:37 +0000 (08:20 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 9 Dec 2009 08:20:37 +0000 (08:20 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@44316 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/include/eina_safety_checks.h

index 1741678..f3c183d 100644 (file)
@@ -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)