From: Matthew Fernandez Date: Sat, 19 Nov 2022 23:11:21 +0000 (-0800) Subject: neatogen ISZERO: remove some unnecessary parens X-Git-Tag: 7.0.3~1^2~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4bb05dbfc97dba3e58de5853ac0b3c188803ec43;p=graphviz neatogen ISZERO: remove some unnecessary parens --- diff --git a/lib/neatogen/adjust.c b/lib/neatogen/adjust.c index 7f5ac060d..cf7bbaf02 100644 --- a/lib/neatogen/adjust.c +++ b/lib/neatogen/adjust.c @@ -1035,7 +1035,7 @@ adjust_data *graphAdjustMode(graph_t *G, adjust_data* dp, char* dflt) return getAdjustMode (G, am ? am : (dflt ? dflt : ""), dp); } -#define ISZERO(d) ((fabs(d) < 0.000000001)) +#define ISZERO(d) (fabs(d) < 0.000000001) /* simpleScaling: */