[GRASS-SVN] r63850 - grass/trunk/general/g.tempfile

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Dec 29 11:18:18 PST 2014


Author: martinl
Date: 2014-12-29 11:18:18 -0800 (Mon, 29 Dec 2014)
New Revision: 63850

Modified:
   grass/trunk/general/g.tempfile/main.c
Log:
update modules to r63849


Modified: grass/trunk/general/g.tempfile/main.c
===================================================================
--- grass/trunk/general/g.tempfile/main.c	2014-12-29 19:17:45 UTC (rev 63849)
+++ grass/trunk/general/g.tempfile/main.c	2014-12-29 19:18:18 UTC (rev 63850)
@@ -29,7 +29,7 @@
     struct GModule *module;
     struct Option *pid;
     struct Flag *dry_run;
-    char *tempfile, *G__tempfile();
+    char *tempfile;
     int p;
     
     G_gisinit(argv[0]);
@@ -58,7 +58,7 @@
 	G_usage();
 	exit(EXIT_FAILURE);
     }
-    tempfile = G__tempfile(p);
+    tempfile = G_tempfile_pid(p);
     
     /* create tempfile so next run of this program will create a unique name */
     if (!dry_run->answer)



More information about the grass-commit mailing list