diff options
Diffstat (limited to 'stdio-common/tmpnam.c')
-rw-r--r-- | stdio-common/tmpnam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tmpnam.c b/stdio-common/tmpnam.c index 6e6dd51..3389ff5 100644 --- a/stdio-common/tmpnam.c +++ b/stdio-common/tmpnam.c @@ -37,7 +37,7 @@ tmpnam (char *s) to FILENAME_MAX characters in any case. */ result = __stdio_gen_tempname (s ?: tmpbuf, L_tmpnam, (const char *) NULL, (const char *) NULL, 0, - (size_t *) NULL, (FILE **) NULL); + (size_t *) NULL, (FILE **) NULL, 0); if (result != NULL && s == NULL) { |