aboutsummaryrefslogtreecommitdiffstats
path: root/l/src/main.lisp
diff options
context:
space:
mode:
authorTeddy Wing2021-02-13 21:16:24 +0100
committerTeddy Wing2021-02-13 21:16:24 +0100
commitc26878c59e3306b8571f2aea53a4ddf113c232c7 (patch)
treea1521288a9327dd7fdc3a63e19c80d05d192986a /l/src/main.lisp
parent597d0b953fca40c1035cee6263b12fa5223ebf51 (diff)
downloadextreload-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.lisp3
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.