[GRASS-SVN] r74266 - grass/branches/releasebranch_7_6/raster/r.info
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Mar 15 13:30:49 PDT 2019
Author: mmetz
Date: 2019-03-15 13:30:49 -0700 (Fri, 15 Mar 2019)
New Revision: 74266
Modified:
grass/branches/releasebranch_7_6/raster/r.info/main.c
Log:
r.info: sync formatting of total cells, see #3793 (backport trunk r74265)
Modified: grass/branches/releasebranch_7_6/raster/r.info/main.c
===================================================================
--- grass/branches/releasebranch_7_6/raster/r.info/main.c 2019-03-15 20:29:51 UTC (rev 74265)
+++ grass/branches/releasebranch_7_6/raster/r.info/main.c 2019-03-15 20:30:49 UTC (rev 74266)
@@ -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