From b2ac5168757662d0081a9e2c832b40c0541cfac3 Mon Sep 17 00:00:00 2001 From: Maciej Pasternacki Date: Wed, 22 Oct 2008 11:27:47 +0200 Subject: [PATCH] - ignore unused lexical variable, stop compiler from whining. --- src/common.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common.lisp b/src/common.lisp index 319f2a3..5fbc768 100644 --- a/src/common.lisp +++ b/src/common.lisp @@ -124,6 +124,7 @@ that are to be executed on setup." (defmethod hunchentoot:dispatch-request :around (dispatch-table) "Take care of database connection during HTTP request." + (declare (ignore dispatch-table)) (postmodern:with-connection *db* (call-next-method))) -- 2.11.4.GIT