[GRASS-SVN] r60398 - grass/branches/releasebranch_7_0/raster/r.in.xyz
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed May 21 20:00:34 PDT 2014
Author: hamish
Date: 2014-05-21 20:00:34 -0700 (Wed, 21 May 2014)
New Revision: 60398
Modified:
grass/branches/releasebranch_7_0/raster/r.in.xyz/main.c
Log:
consistent printf type (merge from trunk)
Modified: grass/branches/releasebranch_7_0/raster/r.in.xyz/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.in.xyz/main.c 2014-05-22 02:51:58 UTC (rev 60397)
+++ grass/branches/releasebranch_7_0/raster/r.in.xyz/main.c 2014-05-22 03:00:34 UTC (rev 60398)
@@ -585,7 +585,7 @@
if (linesize < 6) /* min possible: "0,0,0\n" */
linesize = 6;
estimated_lines = filesize / linesize;
- G_debug(2, "estimated number of lines in file: %ld", estimated_lines);
+ G_debug(2, "estimated number of lines in file: %lu", estimated_lines);
}
else
estimated_lines = -1;
More information about the grass-commit
mailing list