Skip to content

Commit d303d1c

Browse files
committed
fix format with correct formatter
1 parent ff3cf42 commit d303d1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dlmalloc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,8 +1176,8 @@ impl<A: Allocator> Dlmalloc<A> {
11761176
assert!(psize >= size + min_overhead);
11771177

11781178
if !Chunk::mmapped(p) {
1179-
let max_overhead
1180-
= min_overhead + self.min_chunk_size() * 2 + mem::align_of::<usize>() - 1;
1179+
let max_overhead =
1180+
min_overhead + self.min_chunk_size() * 2 + mem::align_of::<usize>() - 1;
11811181

11821182
assert!(psize <= size + max_overhead);
11831183
}

0 commit comments

Comments
 (0)