aboutsummaryrefslogtreecommitdiffstats
path: root/l/src/main.lisp
diff options
context:
space:
mode:
authorTeddy Wing2021-02-01 00:04:08 +0100
committerTeddy Wing2021-02-01 00:04:08 +0100
commit890089f73cac5d58573d7d7e3981b5c8a3c0e167 (patch)
treed1ada342d2a88e5cf6c7ea4496247460863b3a39 /l/src/main.lisp
parent820e50942bc7985431ebeb3d4e5c5952d212d8a2 (diff)
downloadextreload-890089f73cac5d58573d7d7e3981b5c8a3c0e167.tar.bz2
websocket-send: Use local `client` variable instead of global
Must have copy-pasted that s-expression from elsewhere in the file.
Diffstat (limited to 'l/src/main.lisp')
-rw-r--r--l/src/main.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/l/src/main.lisp b/l/src/main.lisp
index 7ad0611..d1336d7 100644
--- a/l/src/main.lisp
+++ b/l/src/main.lisp
@@ -97,5 +97,5 @@
(filter #'extensionp targets)))
(defun websocket-send (client data)
- (wsd:send *client* data)
+ (wsd:send client data)
(wait-group:add *wg*))