From 9c845e7833eaa1828e9a3a557c35ffb96a21279c Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 29 Aug 2021 17:26:17 -0700 Subject: [PATCH] emit_edge_label: 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 f08a296cb..48e920442 100644 --- a/lib/common/emit.c +++ b/lib/common/emit.c @@ -2678,7 +2678,7 @@ emit_edge_label(GVJ_t* job, textlabel_t* lbl, emit_state_t lkind, int explicit, char* newid; char* type; - if ((lbl == NULL) || !(lbl->set)) return; + if (lbl == NULL || !lbl->set) return; if (id) { /* non-NULL if needed */ newid = N_NEW(strlen(id) + sizeof("-headlabel"),char); switch (lkind) { -- 2.49.0