]> granicus.if.org Git - postgis/commitdiff
Revert commit 2990: the real bug was that the LWDEBUG statement was incorrect rather...
authorMark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>
Tue, 23 Sep 2008 19:53:12 +0000 (19:53 +0000)
committerMark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>
Tue, 23 Sep 2008 19:53:12 +0000 (19:53 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@2996 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/lwgunparse.c

index f0687ddafe75c06cd99742c0e99ab01db9a41d5c..73e06d722ceaa589cee20793d20b2b7d9ee61fdb 100644 (file)
@@ -743,8 +743,7 @@ output_wkb_polygon_ring_collection(uchar* geom,outwkbfunc func)
 uchar *
 output_wkb_polygon_collection(uchar* geom)
 {
-       int cnt = read_int(&geom);
-       LWDEBUGF(2, "output_wkb_polygon_collection: %d iterations loop", cnt);
+       LWDEBUG(2, "output_wkb_polygon_collection");
 
        return output_wkb_polygon_ring_collection(geom,output_wkb_point); 
 }