From 2b6532058ef83286a6c329ec7364dd3b2e9be15a Mon Sep 17 00:00:00 2001 From: Stas Boukarev Date: Wed, 21 Aug 2013 15:09:29 +0400 Subject: [PATCH] A typo in %mOKstemp -> %mKOstemp. --- src/syscalls/ffi-functions-unix.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syscalls/ffi-functions-unix.lisp b/src/syscalls/ffi-functions-unix.lisp index ada7ba7..41657c5 100644 --- a/src/syscalls/ffi-functions-unix.lisp +++ b/src/syscalls/ffi-functions-unix.lisp @@ -344,7 +344,7 @@ FLAGS are used to open the temporary file. Return two values: the file descriptor and the path of the temporary file." (let ((template (concatenate 'string template "XXXXXX"))) (with-sstring-to-cstring (ptr template) - (values (%mokstemp ptr) (cstring-to-sstring ptr))))) + (values (%mkostemp ptr) (cstring-to-sstring ptr))))) ;;;------------------------------------------------------------------------- -- 2.11.4.GIT