Skip to content

Commit bd429dc

Browse files
committed
Fix a bug.
1 parent 361ba18 commit bd429dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: simple-bit-stream.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ can be discarded if BYTE-ALIGNED-P returns T."))
120120
(defmethod stream-read-byte ((stream bit-stream))
121121
(init-read stream)
122122
(cond ((= (slot-value stream 'bits-left) 0)
123-
(read-byte stream (slot-value stream 'real-stream)))
123+
(read-byte (slot-value stream 'real-stream)))
124124
((= (slot-value stream 'bits-left)
125125
(slot-value stream 'element-bits))
126126
(prog1

0 commit comments

Comments
 (0)