From: Sandro Santilli Date: Thu, 28 Oct 2004 16:10:25 +0000 (+0000) Subject: Fixed a bug in LWGEOM_asGML. X-Git-Tag: pgis_1_0_0RC1~229 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17c6e083d926239cd8fd694392b1d8d85a318128;p=postgis Fixed a bug in LWGEOM_asGML. git-svn-id: http://svn.osgeo.org/postgis/trunk@1063 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/lwgeom/lwgeom_gml.c b/lwgeom/lwgeom_gml.c index fe0bce1e0..f949f967b 100644 --- a/lwgeom/lwgeom_gml.c +++ b/lwgeom/lwgeom_gml.c @@ -55,7 +55,7 @@ Datum LWGEOM_asGML(PG_FUNCTION_ARGS) char *result; int len; int version = 2; - precision = DEF_PRECISION; + int precision = DEF_PRECISION; char *srs; int SRID; @@ -502,6 +502,9 @@ getSRSbySRID(int SRID) /********************************************************************** * $Log$ + * Revision 1.6 2004/10/28 16:10:25 strk + * Fixed a bug in LWGEOM_asGML. + * * Revision 1.5 2004/10/05 16:28:34 strk * Added ZM dimensions flags knowledge. *