i.rectify: fix error format not a string literal and no format arguments

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@68190 15284696-431f-4ddb-bdfa-cd5b030d7da7
remotes/1472528401135870657/master
martinl 2016-04-01 10:03:29 +00:00
parent 804ee3f4fc
commit bd7b2b01a3
1 changed files with 1 additions and 1 deletions

View File

@ -35,6 +35,6 @@ int get_target(char *group)
strcat(buf, "\n");
strcat(buf, _("Please run i.target for group "));
strcat(buf, group);
G_fatal_error(buf);
G_fatal_error("%s", buf);
return 1; /* never reached */
}