diff options
| author | Rasmus Melchior Jacobsen <[email protected]> | 2023-04-05 06:57:56 +0200 |
|---|---|---|
| committer | Rasmus Melchior Jacobsen <[email protected]> | 2023-04-05 07:11:52 +0200 |
| commit | d8e2f82569e1182e2a3a7ebe43af64f91d1e57e0 (patch) | |
| tree | 88df52d3dbb499b282fed65e0d2643551196883a /embassy-boot/boot/src/lib.rs | |
| parent | 043b3072c46f1795e75b32b194f5dae1798ff2e4 (diff) | |
Let update_len be usize for now
Diffstat (limited to 'embassy-boot/boot/src/lib.rs')
| -rw-r--r-- | embassy-boot/boot/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-boot/boot/src/lib.rs b/embassy-boot/boot/src/lib.rs index 605e5253c..acd90996f 100644 --- a/embassy-boot/boot/src/lib.rs +++ b/embassy-boot/boot/src/lib.rs | |||
| @@ -281,7 +281,7 @@ mod tests { | |||
| 281 | &mut flash, | 281 | &mut flash, |
| 282 | &public_key.to_bytes(), | 282 | &public_key.to_bytes(), |
| 283 | &signature.to_bytes(), | 283 | &signature.to_bytes(), |
| 284 | firmware_len as u32, | 284 | firmware_len, |
| 285 | &mut aligned, | 285 | &mut aligned, |
| 286 | )) | 286 | )) |
| 287 | .is_ok()); | 287 | .is_ok()); |
