Browse Source

Fix error message

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@33925 15284696-431f-4ddb-bdfa-cd5b030d7da7
Glynn Clements 16 years ago
parent
commit
8bcf10616f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      raster/r.statistics2/main.c

+ 1 - 1
raster/r.statistics2/main.c

@@ -173,7 +173,7 @@ int main(int argc, char **argv)
 
     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);