Browse Source

rtree: revert accidential change

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@52590 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 12 years ago
parent
commit
f5a656c16e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/vector/rtree/rtree.h

+ 1 - 1
lib/vector/rtree/rtree.h

@@ -89,7 +89,7 @@ typedef int SearchHitCallback(int id, const struct RTree_Rect *rect, void *arg);
 
 struct RTree;
 
-typedef int rt_search_fn(struct RTree *, const struct RTree_Rect *,
+typedef int rt_search_fn(struct RTree *, struct RTree_Rect *,
                          SearchHitCallback *, void *);
 typedef int rt_insert_fn(struct RTree_Rect *, union RTree_Child, int, struct RTree *);
 typedef int rt_delete_fn(struct RTree_Rect *, union RTree_Child, struct RTree *);