浏览代码

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 年之前
父节点
当前提交
5246283eb8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/vector/Vlib/poly.c

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

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