[GRASS-SVN] r52490 - grass/trunk/imagery/i.maxlik
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Aug 1 01:40:31 PDT 2012
Author: annakrat
Date: 2012-08-01 01:40:30 -0700 (Wed, 01 Aug 2012)
New Revision: 52490
Modified:
grass/trunk/imagery/i.maxlik/open.c
Log:
i.maxlik: added missing arguments for format string
Modified: grass/trunk/imagery/i.maxlik/open.c
===================================================================
--- grass/trunk/imagery/i.maxlik/open.c 2012-07-31 18:09:02 UTC (rev 52489)
+++ grass/trunk/imagery/i.maxlik/open.c 2012-08-01 08:40:30 UTC (rev 52490)
@@ -25,10 +25,10 @@
if (Ref.nfiles <= 1) {
if (Ref.nfiles <= 0)
G_fatal_error(_("Subgroup <%s> of group <%s> doesn't have any raster maps. "
- "The subgroup must have at least 2 raster maps."));
+ "The subgroup must have at least 2 raster maps."), subgroup, group);
else
G_fatal_error(_("Subgroup <%s> of group <%s> only has 1 raster map. "
- "The subgroup must have at least 2 raster maps."));
+ "The subgroup must have at least 2 raster maps."), subgroup, group);
}
cell = (DCELL **) G_malloc(Ref.nfiles * sizeof(DCELL *));
More information about the grass-commit
mailing list