From c2ec52d1e2f962da7bfa45257baa09dae63deb4f Mon Sep 17 00:00:00 2001 From: David Botton Date: Tue, 16 Mar 2021 20:58:38 -0400 Subject: [PATCH] missing nil in format --- source/clog-window.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/clog-window.lisp b/source/clog-window.lisp index c365a36..9e9e7a9 100644 --- a/source/clog-window.lisp +++ b/source/clog-window.lisp @@ -484,7 +484,7 @@ on-storage event is fired for changes to :local storage keys.")) (local = persistant or session)")) (defmethod storage-length ((obj clog-window) storage-type) - (parse-integer (query obj (format "~(~a~)Storage.length" storage-type)))) + (parse-integer (query obj (format nil "~(~a~)Storage.length" storage-type)))) ;;;;;;;;;;;;;;;;; ;; storage-key ;;