summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1995-02-22 03:19:53 +0000
committerRoland McGrath <roland@redhat.com>1995-02-22 03:19:53 +0000
commitf6d5cdba19b36050a007d6a4a0a03e79db470eb3 (patch)
tree9c09f4c90ae07bdb9598de5542ec19d73772a088
parentfcb29e5e964cbe84d6ab8334ae8c75c2ee5d1d8c (diff)
downloadgunmake-3.72.8.tar.gz
(main): Pass missing arg to tmpnam.3.72.8
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 0e3a962..43a6b89 100644
--- a/main.c
+++ b/main.c
@@ -708,7 +708,7 @@ main (argc, argv, envp)
(void) mktemp (name);
#else
static char name[L_tmpnam];
- (void) tmpnam ();
+ (void) tmpnam (name);
#endif
outfile = fopen (name, "w");