1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2024-06-11 09:29:21 +00:00

fix clippy nit

This commit is contained in:
Jessa 2023-01-22 10:50:24 -08:00
parent 669edcf7ad
commit 527bf4e088

View file

@ -62,7 +62,7 @@ impl Mp4Box for MetaBox {
fn summary(&self) -> Result<String> {
let s = match self {
Self::Mdir { .. } => format!("hdlr=ilst"),
Self::Mdir { .. } => "hdlr=ilst".to_string(),
Self::Unknown { hdlr, data } => {
format!("hdlr={} data_len={}", hdlr.handler_type, data.len())
}