]> granicus.if.org Git - postgis/commitdiff
Allow build to work under DEBUG=5
authorPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 23 Mar 2012 19:14:13 +0000 (19:14 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Fri, 23 Mar 2012 19:14:13 +0000 (19:14 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@9537 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/ptarray.c

index 08ebd7b0b71a1c3ca98dd8ddd01121ddab419ad9..381c5112e53593430e9d46b54650b4456cf5fb8e 100644 (file)
@@ -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