[GRASS-SVN] r69159 - grass/trunk/vector/v.external
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Aug 19 02:57:35 PDT 2016
Author: martinl
Date: 2016-08-19 02:57:35 -0700 (Fri, 19 Aug 2016)
New Revision: 69159
Modified:
grass/trunk/vector/v.external/main.c
Log:
v.external: fix format not a string literal and no format arguments compilation issue
Modified: grass/trunk/vector/v.external/main.c
===================================================================
--- grass/trunk/vector/v.external/main.c 2016-08-19 07:40:44 UTC (rev 69158)
+++ grass/trunk/vector/v.external/main.c 2016-08-19 09:57:35 UTC (rev 69159)
@@ -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