From: Paul Ramsey Date: Fri, 23 Mar 2012 19:14:13 +0000 (+0000) Subject: Allow build to work under DEBUG=5 X-Git-Tag: 2.0.0rc1~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d2539a7dea89435359041944a8b3ed03f9ac831;p=postgis Allow build to work under DEBUG=5 git-svn-id: http://svn.osgeo.org/postgis/trunk@9537 b70326c6-7e19-0410-871a-916f4a2858ee --- 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