blowfish fixes - 13
This commit is contained in:
parent
cb64eba729
commit
26a51b6d92
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
(define (make-dictionary1 n)
|
(define (make-dictionary1 n)
|
||||||
;; methods are FIFO (first fixed first out)
|
;; methods are FIFO (first fixed first out)
|
||||||
(let ((*dict (make-list n)))
|
(let ((*dict (make-list n 0)))
|
||||||
|
|
||||||
(define (get key) ;; get key
|
(define (get key) ;; get key
|
||||||
(do ((l *dict (cdr l)))
|
(do ((l *dict (cdr l)))
|
||||||
|
|
Loading…
Reference in New Issue