Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
carljm committed Feb 11, 2025
1 parent 8398398 commit 0543ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/function/maybe_changed_after.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ where
// cycle head which itself is provisional, and in the previous revision it's possible
// that neither one was ever finalized; `validate_provisional` is not recursive, so we
// need to validate them in the right order.)
if old_memo.may_be_provisional() && !self.validate_provisional(db, zalsa, &old_memo) {
if old_memo.may_be_provisional() && !self.validate_provisional(db, zalsa, old_memo) {
return VerifyResult::Changed;
}

Expand Down

0 comments on commit 0543ba2

Please sign in to comment.