From 88b07ac68c267fe700e3da074b85b7eaa55ff51b Mon Sep 17 00:00:00 2001 From: emre Date: Tue, 7 Jul 2026 16:20:16 +0300 Subject: [PATCH] fix warning on format argument --- src/starter.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/starter.lisp b/src/starter.lisp index 7cd221d..5846c13 100644 --- a/src/starter.lisp +++ b/src/starter.lisp @@ -123,8 +123,8 @@ (format *error-output* "~&Loading ~S..." config) (finish-output *error-output*) (if (null (load config :if-does-not-exist nil)) - (format *error-output* " failed~%" config) - (format *error-output* " ok~%" config)))) + (format *error-output* " failed~%") + (format *error-output* " ok~%")))) (defun start (name project-root &key author (description "") license) "Creates commonly used files for a Common Lisp project from given arguments and loaded configuration. Can be called interactively by the user at the repl."