diff options
Diffstat (limited to 'stdio-common/tempnam.c')
-rw-r--r-- | stdio-common/tempnam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tempnam.c b/stdio-common/tempnam.c index 5f8635cfb8..987fbbbabe 100644 --- a/stdio-common/tempnam.c +++ b/stdio-common/tempnam.c @@ -37,7 +37,7 @@ tempnam (const char *dir, const char *pfx) size_t len; char *s; char *t = __stdio_gen_tempname (buf, sizeof (buf), dir, pfx, 1, - &len, (FILE **) NULL); + &len, (FILE **) NULL, 0); if (t == NULL) return NULL; |