Skip to content

Commit

Permalink
removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
saecki committed Dec 13, 2020
1 parent e470b13 commit 9fd92be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mp4ameta"
version = "0.7.2"
version = "0.7.3"
authors = ["Saecki <tobiasschmitz2001@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
3 changes: 0 additions & 3 deletions src/core/atom/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -568,9 +568,6 @@ pub fn write_tag_to(file: &File, atoms: &[Atom]) -> crate::Result<()> {
a.write_to(&mut writer)?;
}

println!("len_diff: {}", len_diff);
println!("free_len: {}", (len_diff.abs() - 8) as usize);

// Fill remaining space with a free atom
let free = Atom::new(FREE, (len_diff.abs() - 8) as usize, Content::Empty);
free.write_to(&mut writer)?;
Expand Down

0 comments on commit 9fd92be

Please sign in to comment.