[GRASS-SVN] r60202 - grass/branches/releasebranch_6_4/lib/gis
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 11 14:22:26 PDT 2014
Author: neteler
Date: 2014-05-11 14:22:26 -0700 (Sun, 11 May 2014)
New Revision: 60202
Modified:
grass/branches/releasebranch_6_4/lib/gis/opencell.c
Log:
gislib: report reason when no temp files available (backport of trunk, r60148)
Modified: grass/branches/releasebranch_6_4/lib/gis/opencell.c
===================================================================
--- grass/branches/releasebranch_6_4/lib/gis/opencell.c 2014-05-11 21:21:49 UTC (rev 60201)
+++ grass/branches/releasebranch_6_4/lib/gis/opencell.c 2014-05-11 21:22:26 UTC (rev 60202)
@@ -663,7 +663,7 @@
tempname = G_tempfile();
fd = creat(tempname, 0666);
if (fd < 0) {
- G_warning(_("G__open_raster_new(): no temp files available"));
+ G_warning(_("No temp files available: %s"), strerror(errno));
G_free(tempname);
G_free(map);
G_free(mapset);
More information about the grass-commit
mailing list