[GRASS-SVN] r71050 - grass/branches/releasebranch_7_2/raster/r.reclass
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 7 10:06:44 PDT 2017
Author: neteler
Date: 2017-05-07 10:06:44 -0700 (Sun, 07 May 2017)
New Revision: 71050
Modified:
grass/branches/releasebranch_7_2/raster/r.reclass/parse.c
Log:
r.reclass: allow using more than 100 rules (trunk, r70847)
Modified: grass/branches/releasebranch_7_2/raster/r.reclass/parse.c
===================================================================
--- grass/branches/releasebranch_7_2/raster/r.reclass/parse.c 2017-05-07 17:05:57 UTC (rev 71049)
+++ grass/branches/releasebranch_7_2/raster/r.reclass/parse.c 2017-05-07 17:06:44 UTC (rev 71050)
@@ -17,7 +17,7 @@
const char *label;
const char *save;
CELL v;
- CELL lo[100], hi[100], new = (CELL) 0;
+ CELL lo[1024], hi[1024], new = (CELL) 0;
int count;
int i, last_null = 0;
More information about the grass-commit
mailing list