diff options
Diffstat (limited to 'l/src/main.lisp')
-rw-r--r-- | l/src/main.lisp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/l/src/main.lisp b/l/src/main.lisp index 770d88b..3fc8953 100644 --- a/l/src/main.lisp +++ b/l/src/main.lisp @@ -25,7 +25,8 @@ :long "version")) (defun main () - (handler-bind ((error #'(lambda (e) (exit-with-error e 69)))) + (handler-bind ((error #'(lambda (e) + (exit-with-error e sysexits:+unavailable+)))) (let ((config (parse-options))) ;; Store the WebSocket client as a global. |