Browse Source

fix for Vect__divide_and_conquer()

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

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

@@ -24,8 +24,8 @@
 
 struct Slink
 {
-    double x;
     struct Slink *next;
+    double x;
 };