diff options
Diffstat (limited to 'sysdeps/posix/mkstemp.c')
-rw-r--r-- | sysdeps/posix/mkstemp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/posix/mkstemp.c b/sysdeps/posix/mkstemp.c index f0db5d5d53..2c9c96bdcc 100644 --- a/sysdeps/posix/mkstemp.c +++ b/sysdeps/posix/mkstemp.c @@ -33,7 +33,7 @@ int mkstemp (template) char *template; { - static const char letters[] + static const char letters[62] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; static uint64_t value; struct timeval tv; |