aboutsummaryrefslogtreecommitdiffstats
path: root/l
diff options
context:
space:
mode:
Diffstat (limited to 'l')
-rw-r--r--l/src/main.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/l/src/main.lisp b/l/src/main.lisp
index 16acb5d..65372d2 100644
--- a/l/src/main.lisp
+++ b/l/src/main.lisp
@@ -7,13 +7,13 @@
(wsd:on :message *client* #'ws-on-message)
- (wsd:send *client* (get-targets-msg 1))
+ (wsd:send *client* (target-get-targets-msg 1))
(sleep 5)
(wsd:close-connection *client*))
-(defun get-targets-msg (call-id)
+(defun target-get-targets-msg (call-id)
(jsown:to-json
`(:obj ("id" . ,call-id)
("method" . "Target.getTargets"))))