Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
paul1r committed Jan 23, 2024
1 parent c038b49 commit c9a5034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/bloom/v1/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func writeInt32(h hash.Hash32, value int32) {
func writeUInt64(h hash.Hash32, value uint64) {
// Convert int32 to little-endian byte slice
bytes := make([]byte, 8)
binary.BigEndian.PutUint64(bytes, uint64(value))
binary.BigEndian.PutUint64(bytes, value)
h.Write(bytes)
}

Expand Down

0 comments on commit c9a5034

Please sign in to comment.