Merge branch 'main' into added-small-defmt-test

This commit is contained in:
2024-04-16 15:34:34 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -245,7 +245,7 @@ pub(crate) fn verify_crc16_ccitt_false_from_raw_to_pus_error(
crc16: u16,
) -> Result<(), PusError> {
verify_crc16_ccitt_false_from_raw(raw_data)
.then(|| ())
.then_some(())
.ok_or(PusError::ChecksumFailure(crc16))
}