From 1fe5499d520f67b2aace342b310eb8e7965fae32 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 29 Aug 2021 17:12:02 -0700 Subject: [PATCH] emit_node: remove unnecessary bracketing --- lib/common/emit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.40.0