diff options
Diffstat (limited to 'misc/mkstemp.c')
-rw-r--r-- | misc/mkstemp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/mkstemp.c b/misc/mkstemp.c index c5018d154a..638115f73a 100644 --- a/misc/mkstemp.c +++ b/misc/mkstemp.c @@ -27,8 +27,7 @@ they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkstemp (template) - char *template; +mkstemp (char *template) { return __gen_tempname (template, 0, 0, __GT_FILE); } |