From b70baefd139028d08c1c98d5416bbe3fcf6a446a Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Fri, 5 Mar 2021 18:42:11 -0800 Subject: [PATCH] remove unused parameter to plot_dot_labels --- cmd/gvmap/make_map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/gvmap/make_map.c b/cmd/gvmap/make_map.c index 919756d31..ef6ff03a2 100644 --- a/cmd/gvmap/make_map.c +++ b/cmd/gvmap/make_map.c @@ -296,7 +296,7 @@ static void plot_dot_edges(FILE *f, SparseMatrix A){ } } -static void plot_dot_labels(FILE *f, int n, int dim, real *x, char **labels, real *width, float *fsz){ +static void plot_dot_labels(FILE *f, int n, int dim, real *x, char **labels, float *fsz){ int i; for (i = 0; i < n; i++){ @@ -548,7 +548,7 @@ void plot_dot_map(Agraph_t* gr, int n, int dim, real *x, SparseMatrix polys, Spa } /* nodes */ - if (!gr && labels) plot_dot_labels(f, n, dim, x, labels, width, fsz); + if (!gr && labels) plot_dot_labels(f, n, dim, x, labels, fsz); /* edges */ if (!gr && A) plot_dot_edges(f, A); -- 2.50.0