Commit 6332e0cdaab282978bc55c6818448e77ad31c507

Thomas de Grivel 2018-06-15T12:19:46

fix epoll type declarations

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/thot-epoll.lisp b/thot-epoll.lisp
index 71a6e13..a367940 100644
--- a/thot-epoll.lisp
+++ b/thot-epoll.lisp
@@ -71,10 +71,10 @@
                 :type (or null function))
    (reply :initarg :reply
           :accessor worker-reply
-          :type 'reply)
+          :type reply)
    (request :initarg :request
             :accessor worker-request
-            :type 'request)))
+            :type request)))
 
 (defmethod agent-epoll-events ((worker worker))
   (logior epoll:+in+ epoll:+out+ epoll:+err+))