summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--module/system/vm/conv.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/system/vm/conv.scm b/module/system/vm/conv.scm
index 84bd28438..513680aaa 100644
--- a/module/system/vm/conv.scm
+++ b/module/system/vm/conv.scm
@@ -34,7 +34,7 @@
(define (code-pack code)
(pmatch code
- ((inst ,n) (guard (integer? n))
+ ((,inst ,n) (guard (integer? n))
(cond ((< n 10)
(let ((abbrev (string->symbol (format #f "~A:~A" inst n))))
(if (instruction? abbrev) (list abbrev) code)))