From: Matthew Fernandez Date: Fri, 20 Jan 2023 15:59:32 +0000 (-0800) Subject: gvmap get_polygon_solids: remove unused 'x_poly' parameter X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89ea22738e510d6f21863c6de7a17686fef7874d;p=graphviz gvmap get_polygon_solids: remove unused 'x_poly' parameter --- 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;