From d728be6db6202dc79d8782e25ae97aca23eebb51 Mon Sep 17 00:00:00 2001 From: Sachymetsu Date: Sat, 25 Jul 2026 11:07:51 +0200 Subject: [PATCH] Some clippy fixes --- wharrgarbl-neko/src/operators.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wharrgarbl-neko/src/operators.rs b/wharrgarbl-neko/src/operators.rs index ceda7fe..657822b 100644 --- a/wharrgarbl-neko/src/operators.rs +++ b/wharrgarbl-neko/src/operators.rs @@ -53,7 +53,7 @@ impl<'s, S: NekoSec> NekoOperateMut<'s, S> { // to be bigger than `POS_RATE`, as the value is obtained // from the zipped count(). unsafe { - advance_position(&mut self.neko, advanced); + advance_position(self.neko, advanced); } } } @@ -146,7 +146,7 @@ impl<'s, S: NekoSec> NekoOperate<'s, S> { // to be bigger than `POS_RATE`, as the value is obtained // from the zipped count(). unsafe { - advance_position(&mut self.neko, advanced); + advance_position(self.neko, advanced); } } } -- 2.51.2