From d9e04a674be182b74d7c24716dab34f35f7413dc Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 21 Nov 2021 09:30:05 -0800 Subject: [PATCH] smyrna set_boundaries: remove unused 't' parameter --- cmd/smyrna/topviewfuncs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/smyrna/topviewfuncs.c b/cmd/smyrna/topviewfuncs.c index be026ac46..c84b0e5fa 100644 --- a/cmd/smyrna/topviewfuncs.c +++ b/cmd/smyrna/topviewfuncs.c @@ -47,7 +47,7 @@ static xdot *parseXdotwithattrs(void *e) } -static void set_boundaries(Agraph_t * g, topview * t) +static void set_boundaries(Agraph_t * g) { Agnode_t *v; Agsym_t* pos_attr = GN_pos(g); @@ -852,7 +852,7 @@ void updateSmGraph(Agraph_t * g,topview* t) aginit(g, AGNODE, "nodeRec", sizeof(nodeRec), 0); aginit(g, AGEDGE, "edgeRec", sizeof(edgeRec), 0); - set_boundaries(g,t); + set_boundaries(g); view->Topview=t; -- 2.40.0