[GRASS-SVN] r52492 - grass/branches/releasebranch_6_4/imagery/i.maxlik
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Aug 1 01:45:10 PDT 2012
Author: annakrat
Date: 2012-08-01 01:45:09 -0700 (Wed, 01 Aug 2012)
New Revision: 52492
Modified:
grass/branches/releasebranch_6_4/imagery/i.maxlik/open.c
Log:
i.maxlik: added missing arguments for format string (merge from trunk, r52490)
Modified: grass/branches/releasebranch_6_4/imagery/i.maxlik/open.c
===================================================================
--- grass/branches/releasebranch_6_4/imagery/i.maxlik/open.c 2012-08-01 08:44:55 UTC (rev 52491)
+++ grass/branches/releasebranch_6_4/imagery/i.maxlik/open.c 2012-08-01 08:45:09 UTC (rev 52492)
@@ -24,10 +24,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