Skip to content

Commit 14ad8c1

Browse files
committed
format
1 parent 0ff9614 commit 14ad8c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/CCHash.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ let max_len_b_ = 128
101101

102102
let bytes (x : bytes) =
103103
let h = ref fnv_offset_basis in
104-
for i = 0 to min max_len_b_ (Bytes.length x-1) do
104+
for i = 0 to min max_len_b_ (Bytes.length x - 1) do
105105
(h := Int64.(mul !h fnv_prime));
106106
let byte = Char.code (Bytes.unsafe_get x i) in
107107
h := Int64.(logxor !h (of_int byte))

0 commit comments

Comments
 (0)