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)