浏览代码

rasterlib: indicate needed GRASS GIS version in case that a compressed null file is found

git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@69390 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 8 年之前
父节点
当前提交
8c7660fb10
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/raster/open.c

+ 1 - 1
lib/raster/open.c

@@ -344,7 +344,7 @@ int Rast__open_old(const char *name, const char *mapset)
 	    fcb->null_file_exists = 0;
 	    /* check for compressed null file */
 	    if (G_find_file2_misc("cell_misc", NULLC_FILE, r_name, r_mapset)) {
-		G_fatal_error(_("Unable to read compressed null file for <%s@%s>"), r_name, r_mapset);
+		G_fatal_error(_("Unable to read compressed null file for <%s@%s>. At least GRASS GIS 7.2 is needed"), r_name, r_mapset);
 		return -1;
 	    }
 	}