Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe committed Feb 24, 2025
1 parent f151917 commit a5c6228
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/decode/src/main.scm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
(e (- (modulo (quotient integer 2) 2048) 1023)))
(* m (expt 2 e))))))

(define (decode-ribs data)
(define (decode-ribs)
(define dictionary (make-stack '()))
(define stack (make-stack '()))

Expand All @@ -84,4 +84,4 @@
(stack-pop! dictionary))
(stack-push! stack value)))))))

(define codes (decode-ribs #f))
(define codes (decode-ribs))

0 comments on commit a5c6228

Please sign in to comment.