Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
saecki committed Jan 1, 2024
1 parent 316dd28 commit 24e9817
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/atom/mdia.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl ParseAtom for Mdia {
let head = parse_head(reader)?;

match head.fourcc() {
MEDIA_HEADER => mdhd = Some(Mdhd::parse(reader, cfg, head.size())?),
MEDIA_HEADER => mdhd = Some(Mdhd::parse(reader, cfg, head.size())?),
HANDLER_REFERENCE => hdlr = Some(Hdlr::parse(reader, cfg, head.size())?),
MEDIA_INFORMATION => minf = Some(Minf::parse(reader, cfg, head.size())?),
_ => reader.skip(head.content_len() as i64)?,
Expand Down
1 change: 0 additions & 1 deletion src/tag/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use std::time::Duration;

use crate::{atom, util, AudioInfo, ReadConfig, READ_CONFIG};


pub use userdata::*;

mod readonly;
Expand Down
1 change: 0 additions & 1 deletion src/tag/userdata/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ use crate::{

pub use genre::*;


mod genre;
mod tuple;

Expand Down

0 comments on commit 24e9817

Please sign in to comment.