Skip to content

Commit 15014eb

Browse files
committed
clippy
1 parent fd95de1 commit 15014eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/segment/gc_stats.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ pub struct GcStats {
1010
impl GcStats {
1111
pub fn set_stale_items(&self, x: u64) {
1212
self.stale_items
13-
.store(x, std::sync::atomic::Ordering::Release)
13+
.store(x, std::sync::atomic::Ordering::Release);
1414
}
1515

1616
pub fn set_stale_bytes(&self, x: u64) {
1717
self.stale_bytes
18-
.store(x, std::sync::atomic::Ordering::Release)
18+
.store(x, std::sync::atomic::Ordering::Release);
1919
}
2020

2121
/// Returns the amount of dead items in the segment

0 commit comments

Comments
 (0)