From: Sandro Santilli Date: Fri, 19 Nov 2004 17:29:09 +0000 (+0000) Subject: precision made of type signed int (for %.*d correct use). X-Git-Tag: pgis_1_0_0RC1~189 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8284de2f1bc64e338ee863f9aa5b19902c638d70;p=postgis precision made of type signed int (for %.*d correct use). git-svn-id: http://svn.osgeo.org/postgis/trunk@1106 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/lwgeom/lwgeom_gml.c b/lwgeom/lwgeom_gml.c index 32c0f15a6..1bae833a2 100644 --- a/lwgeom/lwgeom_gml.c +++ b/lwgeom/lwgeom_gml.c @@ -41,7 +41,7 @@ static char *getSRSbySRID(int SRID); #define SHOW_DIGS (precision + 8) /* Globals */ -unsigned int precision; +int precision; /** @@ -503,6 +503,9 @@ getSRSbySRID(int SRID) /********************************************************************** * $Log$ + * Revision 1.8 2004/11/19 17:29:09 strk + * precision made of type signed int (for %.*d correct use). + * * Revision 1.7 2004/10/28 16:23:17 strk * More cleanups. *