]> granicus.if.org Git - postgis/commitdiff
fixed CAPI change that broke 64-bit platforms
authorMarkus Schaber <markus@schabi.de>
Wed, 25 Oct 2006 10:23:00 +0000 (10:23 +0000)
committerMarkus Schaber <markus@schabi.de>
Wed, 25 Oct 2006 10:23:00 +0000 (10:23 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@2518 b70326c6-7e19-0410-871a-916f4a2858ee

CHANGES
lwgeom/lwgeom_geos_c.c

diff --git a/CHANGES b/CHANGES
index 8369da611e430e94356673e89542d5f8891df2a0..646cac3d9133ffd570d7d7f644497a91446e84d7 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,6 @@
 PostGIS 1.1.6-CVS
 
+       - fixed CAPI change that broke 64-bit platforms
        - use Z ordinate in reprojections
        - spatial_ref_sys.sql updated to EPSG 6.11.1 
         - Simplified Version.config infrastructure to use a single
index c580b86d60194399988866069911f0b97ce7d268..7ad2c7011056a34485b5b7aa6d6e55b3197d83c1 100644 (file)
@@ -2240,9 +2240,8 @@ GEOS2POSTGIS(GEOSGeom geom, char want3d)
 POINTARRAY *
 ptarray_from_GEOSCoordSeq(GEOSCoordSeq cs, char want3d)
 {
-       size_t dims=2;
-       size_t size;
-       unsigned int i, ptsize;
+       unsigned int dims=2;
+       unsigned int size, i, ptsize;
        uchar *points, *ptr;
        POINTARRAY *ret;