From 012df52dafcd2834a4c1f058addc04165d2121ac Mon Sep 17 00:00:00 2001 From: Javier Olaechea Date: Wed, 1 May 2019 23:34:42 -0500 Subject: [PATCH] DEFINT-DECODER: Add missing unquote Otherwise we return the unbound symbol INT instead of the value of the we built in the decoder. Fixes bug introduced in 9facf44. --- osc.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc.lisp b/osc.lisp index 27ba54a..a5f2852 100644 --- a/osc.lisp +++ b/osc.lisp @@ -303,7 +303,7 @@ for n below num-of-octets collect `(,int (dpb (aref ,seq ,n) (byte 8 (* 8 (- (1- ,num-of-octets) ,n))) ,int)))) - int)))) + ,int)))) (defint-decoder 4 "4 byte -> 32 bit unsigned int") (defint-decoder 8 "8 byte -> 64 bit unsigned int")