1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2024-06-02 13:39:54 +00:00

Cargo fmt fix

This commit is contained in:
Jensenn 2023-01-05 13:01:51 -07:00
parent a6b2de0dcc
commit 70481d6450

View file

@ -17,10 +17,7 @@ impl<R: Read + Seek> ReadBox<&mut R> for MetaBox {
let (version, _) = read_box_header_ext(reader)?;
if version != 0 {
return Err(Error::UnsupportedBoxVersion(
BoxType::UdtaBox,
version,
));
return Err(Error::UnsupportedBoxVersion(BoxType::UdtaBox, version));
}
let mut ilst = None;