Skip to content

Commit

Permalink
Address the latest clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mciantyre committed Dec 21, 2022
1 parent 1c51385 commit 7c3f4e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ impl Config {
None => 0u32,
Some(pk) => pk as u32,
};
self.value = (self.value & !PULL_KEEPER_MASK) | (pk as u32);
self.value = (self.value & !PULL_KEEPER_MASK) | pk;
self.mask |= PULL_KEEPER_MASK;
self
}
Expand Down

0 comments on commit 7c3f4e0

Please sign in to comment.