From 6b98b6afea6e790abe738a67aa28bab54c91afe0 Mon Sep 17 00:00:00 2001 From: Nathan Ringo Date: Sun, 1 Sep 2024 18:34:49 -0500 Subject: Fix Clippy lints. --- crates/alloc_buddy/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/alloc_buddy') diff --git a/crates/alloc_buddy/src/lib.rs b/crates/alloc_buddy/src/lib.rs index bbed640..fa14848 100644 --- a/crates/alloc_buddy/src/lib.rs +++ b/crates/alloc_buddy/src/lib.rs @@ -323,7 +323,7 @@ impl< // Ensure that the memory is marked as not being in the free list. assert_eq!( - tree.bitset_get(&mut self.bitset, size_class, offset), + tree.bitset_get(self.bitset, size_class, offset), SubregionStatus::NotInFreeList ); -- cgit v1.2.3