[postgis-commits] svn - r3011 - trunk/lwgeom

postgis-commits at postgis.refractions.net postgis-commits at postgis.refractions.net
Thu Sep 25 14:34:13 PDT 2008


Author: mcayland
Date: 2008-09-25 14:34:13 -0700 (Thu, 25 Sep 2008)
New Revision: 3011

Modified:
   trunk/lwgeom/lwgeom_rtree.c
Log:
Remove missing variables from LWDEBUG(F) statement that would cause compilation to fail with POSTGIS_DEBUG_LEVEL > 0


Modified: trunk/lwgeom/lwgeom_rtree.c
===================================================================
--- trunk/lwgeom/lwgeom_rtree.c	2008-09-25 20:46:16 UTC (rev 3010)
+++ trunk/lwgeom/lwgeom_rtree.c	2008-09-25 21:34:13 UTC (rev 3011)
@@ -445,7 +445,7 @@
     }
     if( memcmp(serializedPoly, currentCache->poly, length) ) 
     {
-        LWDEBUGF(3, "Polygon mismatch, creating new cache. %c, %c", a, b);
+        LWDEBUG(3, "Polygon mismatch, creating new cache.");
         freeCache(currentCache);
         return createNewCache(poly, serializedPoly);
     }



More information about the postgis-commits mailing list