[GRASS-SVN] r34647 -
grass/branches/develbranch_6/raster/r.watershed/seg
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Dec 1 02:18:42 EST 2008
Author: hamish
Date: 2008-12-01 02:18:40 -0500 (Mon, 01 Dec 2008)
New Revision: 34647
Modified:
grass/branches/develbranch_6/raster/r.watershed/seg/do_astar.c
Log:
remove unused variables
Modified: grass/branches/develbranch_6/raster/r.watershed/seg/do_astar.c
===================================================================
--- grass/branches/develbranch_6/raster/r.watershed/seg/do_astar.c 2008-12-01 07:10:39 UTC (rev 34646)
+++ grass/branches/develbranch_6/raster/r.watershed/seg/do_astar.c 2008-12-01 07:18:40 UTC (rev 34647)
@@ -140,10 +140,9 @@
int drop_pt(void)
{
int child, childr, parent;
- int childp, childrp, parentp;
+ int childp, childrp;
CELL ele, eler;
int i;
- POINT point;
HEAP heap_pos;
if (heap_size == 1) {
@@ -220,7 +219,6 @@
int sift_up(int start, CELL ele)
{
int parent, parentp, child, childp;
- POINT point;
CELL elep;
HEAP heap_pos;
More information about the grass-commit
mailing list