Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
I hear git has an `absorb` extension, but I don't have it. :(
  • Loading branch information
ssbr committed Oct 14, 2024
1 parent c1c8bec commit 8abab9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow-buffer/src/util/bit_mask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ unsafe fn set_upto_64bits(
#[inline]
unsafe fn read_bytes_to_u64(data: &[u8], offset: usize, count: usize) -> u64 {
debug_assert!(count <= 8);
let mut tmp : u64 = 0;
let mut tmp: u64 = 0;
let src = data.as_ptr().add(offset);
unsafe {
std::ptr::copy_nonoverlapping(src, &mut tmp as *mut _ as *mut u8, count);
Expand Down

0 comments on commit 8abab9a

Please sign in to comment.