From: Paul Ramsey Date: Mon, 22 Sep 2008 22:59:47 +0000 (+0000) Subject: Add cnt declaration where missing. X-Git-Tag: 1.4.0b1~717 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b6e3d5b0b908ef32c784e25b514e40c1278d5b7;p=postgis Add cnt declaration where missing. git-svn-id: http://svn.osgeo.org/postgis/trunk@2990 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/liblwgeom/lwgunparse.c b/liblwgeom/lwgunparse.c index 8d85a3a39..f0687ddaf 100644 --- a/liblwgeom/lwgunparse.c +++ b/liblwgeom/lwgunparse.c @@ -743,6 +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); return output_wkb_polygon_ring_collection(geom,output_wkb_point);