Skip to content

Commit

Permalink
getting rid of more clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
maebli committed Feb 10, 2024
1 parent 6139634 commit 8dbdb20
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/user_data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -382,12 +382,12 @@ pub fn parse_user_data(data: &[u8]) -> Result<UserDataBlock, ApplicationLayerErr
let counter1 = Counter::from_bcd_hex_digits([data[9], data[10], data[11], data[12]])?;
let counter2 = Counter::from_bcd_hex_digits([data[13], data[14], data[15], data[16]])?;
Ok(UserDataBlock::FixedDataStructure{
identification_number: identification_number,
access_number: access_number,
status: status,
identification_number,
access_number,
status,
medium_ad_unit: medium_and_unit,
counter1: counter1,
counter2: counter2,
counter1,
counter2,
})
},
}
Expand Down

0 comments on commit 8dbdb20

Please sign in to comment.