fix parenthesis order. Thanks, vc++ !! :p

SVN revision: 44316
This commit is contained in:
Vincent Torri 2009-12-09 08:20:37 +00:00
parent 4866755a1c
commit abe9190501
1 changed files with 1 additions and 1 deletions

View 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)