[GRASS-SVN] r74265 - grass/trunk/raster/r.info

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Mar 15 13:29:52 PDT 2019


Author: mmetz
Date: 2019-03-15 13:29:51 -0700 (Fri, 15 Mar 2019)
New Revision: 74265

Modified:
   grass/trunk/raster/r.info/main.c
Log:
r.info: sync formatting of total cells, see #3793

Modified: grass/trunk/raster/r.info/main.c
===================================================================
--- grass/trunk/raster/r.info/main.c	2019-03-15 15:31:28 UTC (rev 74264)
+++ grass/trunk/raster/r.info/main.c	2019-03-15 20:29:51 UTC (rev 74265)
@@ -197,7 +197,7 @@
 	{
 	    compose_line(out, "  Rows:         %d", cellhd.rows);
 	    compose_line(out, "  Columns:      %d", cellhd.cols);
-	    compose_line(out, "  Total Cells:  %ju",
+	    compose_line(out, "  Total Cells:  %jd",
 			 (grass_int64)cellhd.rows * cellhd.cols);
 
 	    /* This is printed as a guide to what the following eastings and



More information about the grass-commit mailing list