Skip to content

Commit

Permalink
Compiler: small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hhugo committed Nov 7, 2024
1 parent b553b6d commit 55fca34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/lib/vlq64.ml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ open! Stdlib
let alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="

let code_rev =
let a = Array.make 255 (-1) in
let a = Array.make 256 (-1) in
for i = 0 to String.length alphabet - 1 do
a.(Char.code alphabet.[i]) <- i
done;
Expand Down

0 comments on commit 55fca34

Please sign in to comment.