From: Sandro Santilli Date: Fri, 19 Aug 2011 09:30:21 +0000 (+0000) Subject: Don't use problematic int types for no reason... X-Git-Tag: 2.0.0alpha1~1089 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3713c150e0121819bab517dc2c258233fdf31b54;p=postgis Don't use problematic int types for no reason... git-svn-id: http://svn.osgeo.org/postgis/trunk@7760 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/loader/shp2pgsql-core.c b/loader/shp2pgsql-core.c index b7b716d01..b926f40d2 100644 --- a/loader/shp2pgsql-core.c +++ b/loader/shp2pgsql-core.c @@ -27,7 +27,7 @@ typedef struct struct_ring Point *list; /* list of points */ struct struct_ring *next; int n; /* number of points in list */ - uint32 linked; /* number of "next" rings */ + unsigned int linked; /* number of "next" rings */ } Ring;