From 3d2539a7dea89435359041944a8b3ed03f9ac831 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Fri, 23 Mar 2012 19:14:13 +0000 Subject: [PATCH] Allow build to work under DEBUG=5 git-svn-id: http://svn.osgeo.org/postgis/trunk@9537 b70326c6-7e19-0410-871a-916f4a2858ee --- liblwgeom/ptarray.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liblwgeom/ptarray.c b/liblwgeom/ptarray.c index 08ebd7b0b..381c5112e 100644 --- a/liblwgeom/ptarray.c +++ b/liblwgeom/ptarray.c @@ -1210,7 +1210,7 @@ ptarray_simplify(POINTARRAY *inpts, double epsilon, unsigned int minpts) if (dist > epsilon || ( outpts->npoints+sp+1 < minpts && dist > 0 ) ) { - LWDEBUGF(4, "Added P%d to stack (outpts:%d, minpts:%d)", split, sp, minsplits); + LWDEBUGF(4, "Added P%d to stack (outpts:%d)", split, sp); stack[++sp] = split; } else -- 2.50.1