diff options
author | Teddy Wing | 2021-02-13 21:16:24 +0100 |
---|---|---|
committer | Teddy Wing | 2021-02-13 21:16:24 +0100 |
commit | c26878c59e3306b8571f2aea53a4ddf113c232c7 (patch) | |
tree | a1521288a9327dd7fdc3a63e19c80d05d192986a /l/src/main.lisp | |
parent | 597d0b953fca40c1035cee6263b12fa5223ebf51 (diff) | |
download | extreload-c26878c59e3306b8571f2aea53a4ddf113c232c7.tar.bz2 |
Replace exit codes with constants from the `sysexits` system
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. |