[GRASS-SVN] r69596 - grass/branches/releasebranch_7_2/vector/v.external

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 28 04:15:55 PDT 2016


Author: martinl
Date: 2016-09-28 04:15:54 -0700 (Wed, 28 Sep 2016)
New Revision: 69596

Modified:
   grass/branches/releasebranch_7_2/vector/v.external/main.c
Log:
v.external: fix format not a string literal and no format arguments compilation issue (relbr72: merge r69159 from trunk)


Modified: grass/branches/releasebranch_7_2/vector/v.external/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.external/main.c	2016-09-28 02:56:28 UTC (rev 69595)
+++ grass/branches/releasebranch_7_2/vector/v.external/main.c	2016-09-28 11:15:54 UTC (rev 69596)
@@ -219,7 +219,7 @@
 	    strcat(error_msg,
 		   _("Consider generating a new location with 'location' parameter"
 		    " from input data set.\n"));
-            G_fatal_error(error_msg);
+            G_fatal_error("%s", error_msg);
 	}
 	else {
             G_verbose_message(_("Projection of input dataset and current location "



More information about the grass-commit mailing list