[GRASS-SVN] r58506 - grass/trunk/raster/r.topmodel

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Dec 22 00:35:19 PST 2013


Author: hcho
Date: 2013-12-22 00:35:19 -0800 (Sun, 22 Dec 2013)
New Revision: 58506

Modified:
   grass/trunk/raster/r.topmodel/file_io.c
Log:
Removed double quotes around the study area name in output

Modified: grass/trunk/raster/r.topmodel/file_io.c
===================================================================
--- grass/trunk/raster/r.topmodel/file_io.c	2013-12-22 08:32:16 UTC (rev 58505)
+++ grass/trunk/raster/r.topmodel/file_io.c	2013-12-22 08:35:19 UTC (rev 58506)
@@ -228,7 +228,7 @@
     if ((fp = fopen(file.output, "w")) == NULL)
 	G_fatal_error(_("Unable to open output file <%s>"), file.output);
 
-    fprintf(fp, "# r.topmodel output file for \"%s\"\n", params.name);
+    fprintf(fp, "# r.topmodel output file for %s\n", params.name);
     fprintf(fp, "# Run time: %.4d-%.2d-%.2d %.2d:%.2d:%.2d\n",
 	    ltime->tm_year, ltime->tm_mon, ltime->tm_mday,
 	    ltime->tm_hour, ltime->tm_min, ltime->tm_sec);



More information about the grass-commit mailing list