From: Matthew Fernandez Date: Sun, 31 Oct 2021 03:12:03 +0000 (-0700) Subject: attachOrthoEdges: remove unused 'g' parameter X-Git-Tag: 2.50.0~52^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79e21f3820778f4ff15393cd63313465cda2ec30;p=graphviz attachOrthoEdges: remove unused 'g' parameter --- diff --git a/lib/ortho/ortho.c b/lib/ortho/ortho.c index d5fefcb3a..49b8d0394 100644 --- a/lib/ortho/ortho.c +++ b/lib/ortho/ortho.c @@ -1147,7 +1147,7 @@ addPoints(pointf p0, pointf p1) } static void -attachOrthoEdges (Agraph_t* g, maze* mp, size_t n_edges, route* route_list, splineInfo *sinfo, epair_t es[], int doLbls) +attachOrthoEdges(maze* mp, size_t n_edges, route* route_list, splineInfo *sinfo, epair_t es[], int doLbls) { int ipt; pointf* ispline = 0; @@ -1365,7 +1365,7 @@ orthoEdges (Agraph_t* g, int doLbls) #ifdef DEBUG if (odb_flags & ODB_ROUTE) emitGraph (stderr, mp, n_edges, route_list, es); #endif - attachOrthoEdges (g, mp, n_edges, route_list, &sinfo, es, doLbls); + attachOrthoEdges(mp, n_edges, route_list, &sinfo, es, doLbls); orthofinish: if (Concentrate)