Skip to content

Merge pull request #1 from turing-machines/feature/up_bootloader_size #7

Merge pull request #1 from turing-machines/feature/up_bootloader_size

Merge pull request #1 from turing-machines/feature/up_bootloader_size #7

GitHub Actions / clippy failed May 8, 2024 in 0s

clippy

1 error

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 0
Note 0
Help 0

Versions

  • rustc 1.77.2 (25ef9e3d8 2024-04-09)
  • cargo 1.77.2 (e52e36006 2024-03-26)
  • clippy 0.1.77 (25ef9e3 2024-04-09)

Annotations

Check failure on line 290 in src/ubi/format.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of a fallible conversion when an infallible one could be used

error: use of a fallible conversion when an infallible one could be used
   --> src/ubi/format.rs:290:39
    |
290 |     let mut data = Vec::with_capacity(u32::try_from(eb_size).unwrap() as usize + vid_size);
    |                                       ^^^^^^^^^^^^^ help: use: `From::from`
    |
    = note: converting `NonZero<u32>` to `u32` cannot fail
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
    = note: `-D clippy::unnecessary-fallible-conversions` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::unnecessary_fallible_conversions)]`