[GRASS-SVN] r73158 - grass/trunk/lib/raster
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Aug 24 03:13:34 PDT 2018
Author: neteler
Date: 2018-08-24 03:13:34 -0700 (Fri, 24 Aug 2018)
New Revision: 73158
Modified:
grass/trunk/lib/raster/open.c
Log:
libraster: improved error msg if compression is not supported
Modified: grass/trunk/lib/raster/open.c
===================================================================
--- grass/trunk/lib/raster/open.c 2018-08-24 08:50:37 UTC (rev 73157)
+++ grass/trunk/lib/raster/open.c 2018-08-24 10:13:34 UTC (rev 73158)
@@ -232,7 +232,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