From 7a3f243d4928d3d2d967dbbc46b2ec10ae96ad61 Mon Sep 17 00:00:00 2001 From: "Pierre R. Mai" Date: Mon, 11 Sep 2023 21:51:09 +0200 Subject: [PATCH] Fix erroneous type declaration in test code Fixes #3 --- deflate-test.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deflate-test.lisp b/deflate-test.lisp index 7c10923..07c133c 100644 --- a/deflate-test.lisp +++ b/deflate-test.lisp @@ -68,7 +68,7 @@ ;;; (defclass octet-input-stream (fundamental-binary-input-stream) - ((data :initarg :data :type (simple-array (*) (unsigned-byte 8))) + ((data :initarg :data :type (simple-array (unsigned-byte 8) (*))) (position :initform 0))) (defmethod stream-element-type ((stream octet-input-stream))