fix clippy::unit_arg

This commit is contained in:
Bennet Bleßmann
2025-07-31 21:40:05 +02:00
committed by Bennet Bleßmann
parent 73cc872b50
commit 6885074006
2 changed files with 4 additions and 3 deletions

View File

@@ -1653,7 +1653,8 @@ impl MachineState {
};
stream.set_past_end_of_stream(true);
Ok(unify!(self, result, end_of_stream))
unify!(self, result, end_of_stream);
Ok(())
}
EOFAction::Reset => {
if !stream.reset() {