Skip to content

Commit 55fca34

Browse files
committed
Compiler: small fix
1 parent b553b6d commit 55fca34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/lib/vlq64.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ open! Stdlib
2222
let alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
2323

2424
let code_rev =
25-
let a = Array.make 255 (-1) in
25+
let a = Array.make 256 (-1) in
2626
for i = 0 to String.length alphabet - 1 do
2727
a.(Char.code alphabet.[i]) <- i
2828
done;

0 commit comments

Comments
 (0)