Commit eb751654a8d9946bd9684eaa32e55e27ae5b555c

Thomas de Grivel 2017-06-20T22:27:02

untabify

diff --git a/cffi-fcntl.lisp b/cffi-fcntl.lisp
index 82ce4cb..f90528c 100644
--- a/cffi-fcntl.lisp
+++ b/cffi-fcntl.lisp
@@ -49,8 +49,8 @@
 
 (defun open (pathname flags &optional mode)
   (let ((fd (if (= 0 (logand flags +o-creat+))
-		(c-open/2 pathname flags)
-		(c-open/3 pathname flags mode))))
+                (c-open/2 pathname flags)
+                (c-open/3 pathname flags mode))))
     (when (< fd 0)
       (error-errno "open"))
     fd))
@@ -68,8 +68,8 @@
 
 (defun openat (dirfd pathname flags &optional mode)
   (let ((fd (if (= 0 (logand flags +o-creat+))
-		(c-openat/3 dirfd pathname flags)
-		(c-openat/4 dirfd pathname flags mode))))
+                (c-openat/3 dirfd pathname flags)
+                (c-openat/4 dirfd pathname flags mode))))
     (when (< fd 0)
       (error-errno "openat"))
     fd))