(main): Pass missing arg to tmpnam.

This commit is contained in:
Roland McGrath 1995-02-22 03:19:53 +00:00
parent fcb29e5e96
commit f6d5cdba19

2
main.c
View file

@ -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");