Skip to content

Commit

Permalink
Fix: Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSprenger committed Jun 8, 2024
1 parent 86d9d2b commit f9cf53f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boards/recovery/src/data_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ impl DataManager {
}
}
pub fn is_landed(&mut self) -> bool {
if self.historical_barometer_altitude.len() < RECOVERY_DATA_POINTS {
if self.historical_barometer_altitude.len() < RECOVERY_DATA_POINTS.into() {
return false;
}
let mut buf = self.historical_barometer_altitude.oldest_ordered();
Expand Down

0 comments on commit f9cf53f

Please sign in to comment.