From: Matthew Fernandez Date: Mon, 30 Aug 2021 00:19:47 +0000 (-0700) Subject: taperfun: remove unnecessary bracketing X-Git-Tag: 2.49.1~46^2~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=055788742c70511ce7629acca4aa1c287e0d0bc1;p=graphviz taperfun: remove unnecessary bracketing --- diff --git a/lib/common/emit.c b/lib/common/emit.c index 6cf76cce7..b45ec82f1 100644 --- a/lib/common/emit.c +++ b/lib/common/emit.c @@ -2237,7 +2237,7 @@ taperfun (edge_t* e) if (streq(attr, "both")) return bothfunc; if (streq(attr, "none")) return nonefunc; } - return (agisdirected(agraphof(aghead(e))) ? forfunc : nonefunc); + return agisdirected(agraphof(aghead(e))) ? forfunc : nonefunc; } static void emit_edge_graphics(GVJ_t * job, edge_t * e, char** styles)