From: Paul Ramsey Date: Fri, 18 Dec 2009 18:38:45 +0000 (+0000) Subject: Moved size of int8 down to 19 chars (#326) X-Git-Tag: 1.5.0b1~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79944df9416acd55a606f1abb3964ff42e91c9b5;p=postgis Moved size of int8 down to 19 chars (#326) git-svn-id: http://svn.osgeo.org/postgis/trunk@5031 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/loader/pgsql2shp.c b/loader/pgsql2shp.c index 099f628dd..759c9ba98 100644 --- a/loader/pgsql2shp.c +++ b/loader/pgsql2shp.c @@ -1547,7 +1547,7 @@ initialize(void) * (-9223372036854775808) */ if ( DBFAddField(dbf, field_name, FTInteger, - 20, 0) == -1 ) + 19, 0) == -1 ) { printf( "Error - Integer field could not " "be created.\n");