Revision: 4205 Author: hans URL: http://bknr.net/trac/changeset/4205
Specialize method on T to silence "unused variable" warning in CCL.
U trunk/thirdparty/hunchentoot/connection-manager.lisp
Modified: trunk/thirdparty/hunchentoot/connection-manager.lisp =================================================================== --- trunk/thirdparty/hunchentoot/connection-manager.lisp 2009-02-09 12:13:27 UTC (rev 4204) +++ trunk/thirdparty/hunchentoot/connection-manager.lisp 2009-02-09 12:14:17 UTC (rev 4205) @@ -69,7 +69,7 @@ (defgeneric shutdown (connection-manager) (:documentation "Terminate all threads that are currently associated with the connection manager, if any.") - (:method (manager) + (:method ((manager t)) #+:lispworks (when-let (acceptor (server-acceptor (server manager))) ;; kill the main acceptor process, see LW documentation for