[GRASS-SVN] r44083 - grass/trunk/imagery/i.rectify
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Oct 29 12:03:44 EDT 2010
Author: mmetz
Date: 2010-10-29 09:03:44 -0700 (Fri, 29 Oct 2010)
New Revision: 44083
Modified:
grass/trunk/imagery/i.rectify/bilinear.c
Log:
missed one FCELL->DCELL conversion
Modified: grass/trunk/imagery/i.rectify/bilinear.c
===================================================================
--- grass/trunk/imagery/i.rectify/bilinear.c 2010-10-29 16:02:20 UTC (rev 44082)
+++ grass/trunk/imagery/i.rectify/bilinear.c 2010-10-29 16:03:44 UTC (rev 44083)
@@ -43,7 +43,7 @@
for (i = 0; i < 2; i++)
for (j = 0; j < 2; j++) {
const DCELL *cellp = CPTR(ibuffer, row + i, col + j);
- if (Rast_is_f_null_value(cellp)) {
+ if (Rast_is_d_null_value(cellp)) {
Rast_set_null_value(obufptr, 1, cell_type);
return;
}
More information about the grass-commit
mailing list