[GRASS-SVN] r55985 - grass/trunk/vector/v.net.allpairs

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Apr 24 10:32:43 PDT 2013


Author: mmetz
Date: 2013-04-24 10:32:43 -0700 (Wed, 24 Apr 2013)
New Revision: 55985

Modified:
   grass/trunk/vector/v.net.allpairs/main.c
Log:
v.net.allpairs: fix Vect_copy_table() args

Modified: grass/trunk/vector/v.net.allpairs/main.c
===================================================================
--- grass/trunk/vector/v.net.allpairs/main.c	2013-04-24 17:31:52 UTC (rev 55984)
+++ grass/trunk/vector/v.net.allpairs/main.c	2013-04-24 17:32:43 UTC (rev 55985)
@@ -236,7 +236,7 @@
     }
     /* copy node table */
     if (Vect_get_field(&In, nfield))
-	Vect_copy_table(&In, &Out, nfield, nfield, NULL, GV_POINT);
+	Vect_copy_table(&In, &Out, nfield, nfield, NULL, GV_MTABLE);
 
     G_message(_("Collecting shortest paths..."));
     G_percent_reset();



More information about the grass-commit mailing list