소스 검색

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 년 전
부모
커밋
a8c1a496ad
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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();