From: Sandro Santilli Date: Wed, 22 Sep 2004 17:11:28 +0000 (+0000) Subject: Added missing prototype to make compiler happy X-Git-Tag: pgis_1_0_0RC1~390 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eca0fbae5744e350640c48ec23422af2cbe20442;p=postgis Added missing prototype to make compiler happy git-svn-id: http://svn.osgeo.org/postgis/trunk@882 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/lwgeom/lwgeom_functions_basic.c b/lwgeom/lwgeom_functions_basic.c index 71f7129aa..54f2330c4 100644 --- a/lwgeom/lwgeom_functions_basic.c +++ b/lwgeom/lwgeom_functions_basic.c @@ -2092,7 +2092,7 @@ Datum LWGEOM_collect(PG_FUNCTION_ARGS) LWGEOM_EXPLODED *exp1, *exp2, *expcoll; char *serialized_result; int wantbbox = 0; - int size; + //int size; // return null if both geoms are null if ( (geom1_ptr == NULL) && (geom2_ptr == NULL) ) @@ -2292,7 +2292,7 @@ Datum LWGEOM_collect_garray(PG_FUNCTION_ARGS) LWGEOM_EXPLODED *exploded=NULL; int i; int wantbbox = 0; // don't compute a bounding box... - int size; + //int size; char *serialized_result = NULL; //elog(NOTICE, "LWGEOM_collect_garray called");