From c3a47c78d262da6de1621352bc89fb3fe39ee4e9 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 17 Apr 2021 22:59:18 -0700 Subject: [PATCH] remove unused parameter to mds_model --- lib/neatogen/neatoinit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/neatogen/neatoinit.c b/lib/neatogen/neatoinit.c index f7fed2503..975dd9ef5 100644 --- a/lib/neatogen/neatoinit.c +++ b/lib/neatogen/neatoinit.c @@ -1279,7 +1279,7 @@ static void subset_model(Agraph_t * G, int nG) * Assume the matrix already contains shortest path values. * Use the actual lengths provided the input for edges. */ -static void mds_model(graph_t * g, int nG) +static void mds_model(graph_t * g) { long i, j; node_t *v; @@ -1317,7 +1317,7 @@ static void kkNeato(Agraph_t * g, int nG, int model) } } else if (model == MODEL_MDS) { shortest_path(g, nG); - mds_model(g, nG); + mds_model(g); } else shortest_path(g, nG); initial_positions(g, nG); -- 2.40.0