cdb: fix declaration
This commit is contained in:
parent
851dc899eb
commit
da4669d792
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@
|
||||||
(ash (read-byte stream) 24)))
|
(ash (read-byte stream) 24)))
|
||||||
|
|
||||||
(defun write-word (byte stream)
|
(defun write-word (byte stream)
|
||||||
(declare (type (unsigned-byte 32) byte)
|
(declare (type :uint32-t byte)
|
||||||
(stream stream)
|
(stream stream)
|
||||||
(optimize speed (safety 0)))
|
(optimize speed (safety 0)))
|
||||||
(write-byte (logand #xff byte) stream)
|
(write-byte (logand #xff byte) stream)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue