diff --git a/scsh/encryption/dictionary.scm b/scsh/encryption/dictionary.scm index e95fce1..faff415 100644 --- a/scsh/encryption/dictionary.scm +++ b/scsh/encryption/dictionary.scm @@ -28,7 +28,7 @@ (define (make-dictionary1 n) ;; methods are FIFO (first fixed first out) - (let ((*dict (make-list n))) + (let ((*dict (make-list n 0))) (define (get key) ;; get key (do ((l *dict (cdr l)))