Commit dc0cbafdcfdc3e9444df3349d96bbc25751bf965

Thomas de Grivel 2018-06-15T10:48:42

fix types

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/unistd-stream.lisp b/unistd-stream.lisp
index 681a352..10336e8 100644
--- a/unistd-stream.lisp
+++ b/unistd-stream.lisp
@@ -24,7 +24,7 @@
 (defclass unistd-stream (ub8-stream)
   ((fd :initarg :fd
        :reader stream-fd
-       :type file-descriptor)
+       :type unistd:file-descriptor)
    (blocking-p :initarg :blocking-p
                :type boolean))
   (:documentation "Base class for file descriptor streams."))