Explorar el Código

correct order of arguments

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@42082 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz hace 15 años
padre
commit
5f03853527
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lib/vector/Vlib/write.c

+ 1 - 1
lib/vector/Vlib/write.c

@@ -208,7 +208,7 @@ Vect_rewrite_line(struct Map_info *Map,
 
     offset = Map->plus.Line[line]->offset;
     ret =
-	(*Vect_rewrite_line_array[Map->format][Map->level]) (Map, offset, line, type,
+	(*Vect_rewrite_line_array[Map->format][Map->level]) (Map, line, type, offset,
 							     points, cats);
 
     if (ret == -1)