Task #77147 - fixed.err
back to task #77147download
Error: CLIPPY_WARNING:
crates/lib/src/bootc_composefs/rollback.rs:37:18: warning: useless use of `format!`
# |
# 37 | .context(format!("Reopening entries dir as owned fd"))?;
# | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"Reopening entries dir as owned fd".to_string()`
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
# = note: `#[warn(clippy::useless_format)]` on by default
Error: CLIPPY_WARNING:
crates/lib/src/bootc_composefs/rollback.rs:39:32: warning: useless use of `format!`
# |
# 39 | fsync(entries_dir).context(format!("fsync entries dir"))?;
# | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"fsync entries dir".to_string()`
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
Error: CLIPPY_WARNING:
crates/lib/src/bootc_composefs/rollback.rs:63:26: warning: useless use of `format!`
# |
# 63 | .with_context(|| format!("Reopening /sysroot/boot/loader as owned fd"))?;
# | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"Reopening /sysroot/boot/loader as owned fd".to_string()`
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format