Browse Source

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 years ago
parent
commit
8c7660fb10
1 changed files with 1 additions and 1 deletions
  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;
 	    }
 	}