mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 12:34:31 +00:00
f8fff1c5bf
warning: panic message is not a string literal --> qcow_utils/src/qcow_img.rs:52:26 | 52 | Err(f) => panic!(f.to_string()), | ^^^^^^^^^^^^^ | = note: `#[warn(non_fmt_panic)]` on by default = note: this is no longer accepted in Rust 2021 help: add a "{}" format string to Display the message | 52 | Err(f) => panic!("{}", f.to_string()), | ^^^^^ help: or use std::panic::panic_any instead | 52 | Err(f) => std::panic::panic_any(f.to_string()), | ^^^^^^^^^^^^^^^^^^^^^^ warning: 1 warning emitted BUG=None TEST=build Change-Id: I06a18610b455e57c9c9813513963385749fad17c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3026651 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Junichi Uekawa <uekawa@chromium.org> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
libqcow_utils.pc.in | ||
platform2_preinstall.sh |