summaryrefslogtreecommitdiff
path: root/libc/stdlib/mkstemp64.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdlib/mkstemp64.c')
-rw-r--r--libc/stdlib/mkstemp64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/mkstemp64.c b/libc/stdlib/mkstemp64.c
index e29be2da4..6f2ee3e83 100644
--- a/libc/stdlib/mkstemp64.c
+++ b/libc/stdlib/mkstemp64.c
@@ -26,5 +26,5 @@
Then open the file and return a fd. */
int mkstemp64 (char *template)
{
- return __gen_tempname (template, __GT_BIGFILE, S_IRUSR | S_IWUSR);
+ return __gen_tempname (template, __GT_BIGFILE, 0, S_IRUSR | S_IWUSR);
}