diff --git a/qcow_utils/src/qcow_img.rs b/qcow_utils/src/qcow_img.rs index 3fdd26973c..1e28fc4c83 100644 --- a/qcow_utils/src/qcow_img.rs +++ b/qcow_utils/src/qcow_img.rs @@ -49,7 +49,7 @@ fn main() -> std::result::Result<(), ()> { let matches = match opts.parse(&args[1..]) { Ok(m) => m, - Err(f) => panic!(f.to_string()), + Err(f) => panic!("{}", f.to_string()), }; if matches.free.len() < 2 {