From 032ae07af3196f1eb7ff6022da5fb4966c513748 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Fri, 5 Mar 2021 18:43:39 -0800 Subject: [PATCH] remove unused parameter to dot_polygon --- cmd/gvmap/make_map.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/gvmap/make_map.c b/cmd/gvmap/make_map.c index ef6ff03a2..13f9fb989 100644 --- a/cmd/gvmap/make_map.c +++ b/cmd/gvmap/make_map.c @@ -310,7 +310,7 @@ static void plot_dot_labels(FILE *f, int n, int dim, real *x, char **labels, flo } static void dot_polygon(char **sbuff, int *len, int *len_max, int np, float *xp, float *yp, real line_width, - int fill, int close, char *cstring){ + int fill, char *cstring){ int i; int ret = 0; size_t len_swidth = 0; @@ -395,9 +395,9 @@ void dot_one_poly(char **sbuff, int *len, int *len_max, int use_line, real line_ /*river*/ } else { } - dot_polygon(sbuff, len, len_max, np, xp, yp, line_width, fill, close, cstring); + dot_polygon(sbuff, len, len_max, np, xp, yp, line_width, fill, cstring); } else { - dot_polygon(sbuff, len, len_max, np, xp, yp, line_width, fill, close, cstring); + dot_polygon(sbuff, len, len_max, np, xp, yp, line_width, fill, cstring); } } -- 2.50.0