[GRASS-SVN] r39825 - grass/trunk/lib/raster
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Nov 27 12:13:43 EST 2009
Author: martinl
Date: 2009-11-27 12:13:43 -0500 (Fri, 27 Nov 2009)
New Revision: 39825
Modified:
grass/trunk/lib/raster/opencell.c
Log:
libgis: use G_fully_qualified_name()
Modified: grass/trunk/lib/raster/opencell.c
===================================================================
--- grass/trunk/lib/raster/opencell.c 2009-11-27 15:55:54 UTC (rev 39824)
+++ grass/trunk/lib/raster/opencell.c 2009-11-27 17:13:43 UTC (rev 39825)
@@ -111,7 +111,7 @@
int fd;
if ((fd = Rast__open_old(name, mapset)) < 0) {
- G_warning(_("Unable to open raster map <%s@%s>"), name, mapset);
+ G_warning(_("Unable to open raster map <%s>"), G_fully_qualified_name(name, mapset));
return fd;
}
@@ -176,7 +176,7 @@
mapset = xmapset;
if (!G_find_raster2(name, mapset)) {
- G_warning(_("Unable to find <%s@%s>"), name, mapset);
+ G_warning(_("Unable to find <%s>"), G_fully_qualified_name(name, mapset));
return -1;
}
More information about the grass-commit
mailing list