Correct let to let*

This commit is contained in:
Vasilij Schneidermann 2024-03-18 02:48:48 +01:00
parent 1b1e8b311b
commit c837c7110f

View file

@ -134,7 +134,7 @@
(define (read-bytevector n . o) (define (read-bytevector n . o)
(if (zero? n) (if (zero? n)
#u8() #u8()
(let ((in (if (pair? o) (car o) (current-input-port))) (let* ((in (if (pair? o) (car o) (current-input-port)))
(vec (make-bytevector n)) (vec (make-bytevector n))
(res (read-bytevector! vec in))) (res (read-bytevector! vec in)))
(cond ((eof-object? res) res) (cond ((eof-object? res) res)