From: Matthew Fernandez Date: Mon, 30 Aug 2021 00:12:02 +0000 (-0700) Subject: emit_node: remove unnecessary bracketing X-Git-Tag: 2.49.1~46^2~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1fe5499d520f67b2aace342b310eb8e7965fae32;p=graphviz emit_node: remove unnecessary bracketing --- diff --git a/lib/common/emit.c b/lib/common/emit.c index ca72c69ee..ef4a10625 100644 --- a/lib/common/emit.c +++ b/lib/common/emit.c @@ -1929,7 +1929,7 @@ static void emit_node(GVJ_t * job, node_t * n) if (ND_shape(n) /* node has a shape */ && node_in_layer(job, agraphof(n), n) /* and is in layer */ && node_in_box(n, job->clip) /* and is in page/view */ - && (ND_state(n) != gvc->common.viewNum)) /* and not already drawn */ + && ND_state(n) != gvc->common.viewNum) /* and not already drawn */ { ND_state(n) = gvc->common.viewNum; /* mark node as drawn */