[GRASS-SVN] r73159 - grass/branches/releasebranch_7_4/lib/raster

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Aug 24 03:18:33 PDT 2018


Author: neteler
Date: 2018-08-24 03:18:33 -0700 (Fri, 24 Aug 2018)
New Revision: 73159

Modified:
   grass/branches/releasebranch_7_4/lib/raster/open.c
Log:
libraster: improved error msg if compression is not supported (trunk, r73158)

Modified: grass/branches/releasebranch_7_4/lib/raster/open.c
===================================================================
--- grass/branches/releasebranch_7_4/lib/raster/open.c	2018-08-24 10:13:34 UTC (rev 73158)
+++ grass/branches/releasebranch_7_4/lib/raster/open.c	2018-08-24 10:18:33 UTC (rev 73159)
@@ -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