From 89ea22738e510d6f21863c6de7a17686fef7874d Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Fri, 20 Jan 2023 07:59:32 -0800 Subject: [PATCH] gvmap get_polygon_solids: remove unused 'x_poly' parameter --- 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 b172c9839..e61725a94 100644 --- a/cmd/gvmap/make_map.c +++ b/cmd/gvmap/make_map.c @@ -665,7 +665,7 @@ static int same_edge(int ecur, int elast, int *edge_table){ } static void get_polygon_solids(int nt, SparseMatrix E, int ncomps, int *comps_ptr, int *comps, - int *mask, double *x_poly, SparseMatrix *polys){ + int *mask, SparseMatrix *polys){ /*============================================================ polygon slids that will be colored @@ -992,7 +992,7 @@ static void get_polygons(int exclude_random, int n, int nrandom, int dim, Sparse polygon solids ============================================================*/ - get_polygon_solids(nt, E, ncomps, comps_ptr, comps, mask, *x_poly, polys); + get_polygon_solids(nt, E, ncomps, comps_ptr, comps, mask, polys); B = get_country_graph(n, E, groups, GRP_RANDOM, GRP_BBOX); *country_graph = B; -- 2.40.0