[GRASS-SVN] r73160 - grass/branches/releasebranch_7_2/lib/raster
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Aug 24 03:19:02 PDT 2018
Author: neteler
Date: 2018-08-24 03:19:01 -0700 (Fri, 24 Aug 2018)
New Revision: 73160
Modified:
grass/branches/releasebranch_7_2/lib/raster/open.c
Log:
libraster: improved error msg if compression is not supported (trunk, r73158)
Modified: grass/branches/releasebranch_7_2/lib/raster/open.c
===================================================================
--- grass/branches/releasebranch_7_2/lib/raster/open.c 2018-08-24 10:18:33 UTC (rev 73159)
+++ grass/branches/releasebranch_7_2/lib/raster/open.c 2018-08-24 10:19:01 UTC (rev 73160)
@@ -231,7 +231,7 @@
}
/* test if compressor type is supported */
if (!G_check_compressor(cellhd.compressed)) {
- G_fatal_error(_("Compression with %s is not supported"), G_compressor_name(cellhd.compressed));
+ G_fatal_error(_("Compression with %s is not supported in this GRASS GIS installation"), G_compressor_name(cellhd.compressed));
}
if (cellhd.proj != R__.rd_window.proj)
More information about the grass-commit
mailing list