[GRASS-SVN] r36539 - grass/trunk/lib/vector/Vlib

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Mar 30 16:13:16 EDT 2009


Author: martinl
Date: 2009-03-30 16:13:06 -0400 (Mon, 30 Mar 2009)
New Revision: 36539

Modified:
   grass/trunk/lib/vector/Vlib/geos.c
Log:
remove unused variable from geos.c


Modified: grass/trunk/lib/vector/Vlib/geos.c
===================================================================
--- grass/trunk/lib/vector/Vlib/geos.c	2009-03-30 18:56:18 UTC (rev 36538)
+++ grass/trunk/lib/vector/Vlib/geos.c	2009-03-30 20:13:06 UTC (rev 36539)
@@ -37,9 +37,7 @@
 GEOSGeometry *Vect_read_line_geos(const struct Map_info *Map, int line)
 {
     int type, dim;
-    GEOSGeometry *geom;
-    GEOSCoordSequence *pseq;
-
+    
     if (!Points)
 	Points = Vect_new_line_struct();
 
@@ -70,7 +68,7 @@
  */
 GEOSGeometry *Vect_read_area_geos(const struct Map_info * Map, int area)
 {
-    int i, type, dim, nholes, isle;
+    int i, dim, nholes, isle;
     GEOSGeometry *boundary, **holes;
 
     if (!Points)



More information about the grass-commit mailing list