[GRASS-SVN] r66653 - grass-addons/grass7/raster/r.in.arc

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Oct 29 06:39:50 PDT 2015


Author: neteler
Date: 2015-10-29 06:39:49 -0700 (Thu, 29 Oct 2015)
New Revision: 66653

Modified:
   grass-addons/grass7/raster/r.in.arc/gethead.c
Log:
r.in.arc addon: fix compilation error -Werror=format-security

Modified: grass-addons/grass7/raster/r.in.arc/gethead.c
===================================================================
--- grass-addons/grass7/raster/r.in.arc/gethead.c	2015-10-29 12:04:36 UTC (rev 66652)
+++ grass-addons/grass7/raster/r.in.arc/gethead.c	2015-10-29 13:39:49 UTC (rev 66653)
@@ -86,7 +86,7 @@
 	}
 
 	G_warning(_("Illegal line in header"));
-	G_warning(buf);
+	G_warning("%s", buf);
 
 	missing(s, "yllcorner");
 	missing(w, "xllcorner");



More information about the grass-commit mailing list