]> granicus.if.org Git - postgis/commitdiff
Don't use problematic int types for no reason...
authorSandro Santilli <strk@keybit.net>
Fri, 19 Aug 2011 09:30:21 +0000 (09:30 +0000)
committerSandro Santilli <strk@keybit.net>
Fri, 19 Aug 2011 09:30:21 +0000 (09:30 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@7760 b70326c6-7e19-0410-871a-916f4a2858ee

loader/shp2pgsql-core.c

index b7b716d01ffb35c01e85b33d87d1f77a561347dd..b926f40d229291685db515da559301ea481e97dd 100644 (file)
@@ -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;