From 79e21f3820778f4ff15393cd63313465cda2ec30 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 30 Oct 2021 20:12:03 -0700 Subject: [PATCH] attachOrthoEdges: remove unused 'g' parameter --- lib/ortho/ortho.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.49.0