From da4669d792c4c548bbc65c83c5df790501d8d09f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= Date: Sat, 28 Jan 2017 18:14:06 +0100 Subject: [PATCH] cdb: fix declaration --- contrib/ecl-cdb/ecl-cdb.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/ecl-cdb/ecl-cdb.lisp b/contrib/ecl-cdb/ecl-cdb.lisp index d4e1a977..bd9219fd 100644 --- a/contrib/ecl-cdb/ecl-cdb.lisp +++ b/contrib/ecl-cdb/ecl-cdb.lisp @@ -73,7 +73,7 @@ (ash (read-byte stream) 24))) (defun write-word (byte stream) - (declare (type (unsigned-byte 32) byte) + (declare (type :uint32-t byte) (stream stream) (optimize speed (safety 0))) (write-byte (logand #xff byte) stream)