Browse Source

fix typo

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47014 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 14 years ago
parent
commit
56130a84b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/vector/Vlib/list.c

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

@@ -340,7 +340,7 @@ int Vect_boxlist_append_boxlist(struct boxlist *alist, const struct boxlist *bli
     else {
 	struct bound_box box;
 
-	box.E = box.N = box.N = box.S = box.T = box.B = 0;
+	box.E = box.W = box.N = box.S = box.T = box.B = 0;
 	for (i = 0; i < blist->n_values; i++)
 	    Vect_boxlist_append(alist, blist->id[i], box);
     }