[GRASS-SVN] r33925 - grass/trunk/raster/r.statistics2

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Oct 17 12:35:08 EDT 2008


Author: glynn
Date: 2008-10-17 12:35:07 -0400 (Fri, 17 Oct 2008)
New Revision: 33925

Modified:
   grass/trunk/raster/r.statistics2/main.c
Log:
Fix error message


Modified: grass/trunk/raster/r.statistics2/main.c
===================================================================
--- grass/trunk/raster/r.statistics2/main.c	2008-10-17 16:34:45 UTC (rev 33924)
+++ grass/trunk/raster/r.statistics2/main.c	2008-10-17 16:35:07 UTC (rev 33925)
@@ -173,7 +173,7 @@
 
     cover_fd = G_open_cell_old(covermap, "");
     if (cover_fd < 0)
-	G_fatal_error(_("Unable to open base map <%s>"), basemap);
+	G_fatal_error(_("Unable to open cover map <%s>"), covermap);
 
     if (usecats && G_read_cats(covermap, "", &cats) < 0)
 	G_fatal_error(_("Unable to read category file of cover map <%s>"), covermap);



More information about the grass-commit mailing list