[GRASS-SVN] r73867 - grass/trunk/vector/v.vol.rst

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Dec 27 04:21:01 PST 2018


Author: neteler
Date: 2018-12-27 04:21:01 -0800 (Thu, 27 Dec 2018)
New Revision: 73867

Modified:
   grass/trunk/vector/v.vol.rst/main.c
Log:
v.vol.rst: fix user warning as cellout is undefined here

Modified: grass/trunk/vector/v.vol.rst/main.c
===================================================================
--- grass/trunk/vector/v.vol.rst/main.c	2018-12-27 10:01:53 UTC (rev 73866)
+++ grass/trunk/vector/v.vol.rst/main.c	2018-12-27 12:21:01 UTC (rev 73867)
@@ -639,7 +639,7 @@
 		}
 	    }
 	} else
-	  G_warning(_("Unable to create <%s> raster map without cross_input raster map being specified"), cellout);
+	  G_warning(_("Unable to create 'cross_output' raster map without 'cross_input' raster map being specified"));
 	ertot = 0.;
         
 	out_cond1 = (outz != NULL) || (gradient != NULL) || (aspect1 != NULL)



More information about the grass-commit mailing list