We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ff9614 commit 14ad8c1Copy full SHA for 14ad8c1
src/core/CCHash.ml
@@ -101,7 +101,7 @@ let max_len_b_ = 128
101
102
let bytes (x : bytes) =
103
let h = ref fnv_offset_basis in
104
- for i = 0 to min max_len_b_ (Bytes.length x-1) do
+ for i = 0 to min max_len_b_ (Bytes.length x - 1) do
105
(h := Int64.(mul !h fnv_prime));
106
let byte = Char.code (Bytes.unsafe_get x i) in
107
h := Int64.(logxor !h (of_int byte))
0 commit comments