[GRASS-SVN] r68091 - grass/trunk/imagery/i.rectify

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Mar 20 23:37:26 PDT 2016


Author: hcho
Date: 2016-03-20 23:37:26 -0700 (Sun, 20 Mar 2016)
New Revision: 68091

Modified:
   grass/trunk/imagery/i.rectify/target.c
Log:
i.rectify: Add a newline between messages

Modified: grass/trunk/imagery/i.rectify/target.c
===================================================================
--- grass/trunk/imagery/i.rectify/target.c	2016-03-21 06:23:50 UTC (rev 68090)
+++ grass/trunk/imagery/i.rectify/target.c	2016-03-21 06:37:26 UTC (rev 68091)
@@ -32,8 +32,9 @@
     sprintf(buf, _("Mapset <%s> in target location <%s> - "), mapset, location);
     strcat(buf, stat == 0 ? _("permission denied") : _("not found"));
   error:
-    strcat(buf, _("Please run i.target for group."));
+    strcat(buf, "\n");
+    strcat(buf, _("Please run i.target for group "));
     strcat(buf, group);
-    G_fatal_error("%s", buf);
+    G_fatal_error(buf);
     return 1;			/* never reached */
 }



More information about the grass-commit mailing list