Browse Source

v.net.allpairs: fix Vect_copy_table() args

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@55985 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 12 years ago
parent
commit
a8c1a496ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vector/v.net.allpairs/main.c

+ 1 - 1
vector/v.net.allpairs/main.c

@@ -236,7 +236,7 @@ int main(int argc, char *argv[])
     }
     /* 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();