From: Matthew Fernandez Date: Fri, 10 Sep 2021 01:06:14 +0000 (-0700) Subject: fdpAdjust: remove some unnecessary bracketing X-Git-Tag: 2.49.1~20^2~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1575f09ca8de30257b902a74195ff1eb034be5e;p=graphviz fdpAdjust: remove some unnecessary bracketing --- diff --git a/lib/neatogen/adjust.c b/lib/neatogen/adjust.c index b2013de37..364c26921 100644 --- a/lib/neatogen/adjust.c +++ b/lib/neatogen/adjust.c @@ -764,7 +764,7 @@ fdpAdjust (graph_t* g, adjust_data* am) ELSCHEME_NONE, 0, NULL, NULL, mapBool (agget(g, "overlap_shrink"), TRUE)); for (n = agfstnode(g); n; n = agnxtnode(g, n)) { - real *npos = pos + (Ndim * ND_id(n)); + real *npos = pos + Ndim * ND_id(n); for (i = 0; i < Ndim; i++) { ND_pos(n)[i] = npos[i]; }