diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-26 21:45:29 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-26 21:45:29 +0100 |
commit | 04e3ebfdda613be0e58290a49536116cc57ad147 (patch) | |
tree | f694064c74e35ddb49fd900a83885e5874a78448 /matroska/src/bin | |
parent | c715d411f465ef742ba76866dfb177f71598b69c (diff) | |
download | jellything-04e3ebfdda613be0e58290a49536116cc57ad147.tar jellything-04e3ebfdda613be0e58290a49536116cc57ad147.tar.bz2 jellything-04e3ebfdda613be0e58290a49536116cc57ad147.tar.zst |
mhh
Diffstat (limited to 'matroska/src/bin')
-rw-r--r-- | matroska/src/bin/mkvdump.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/matroska/src/bin/mkvdump.rs b/matroska/src/bin/mkvdump.rs index 10c697a..ba05c19 100644 --- a/matroska/src/bin/mkvdump.rs +++ b/matroska/src/bin/mkvdump.rs @@ -14,9 +14,9 @@ fn main() -> anyhow::Result<()> { while let Some(tag) = r.next() { let tag = tag?; match tag { - MatroskaTag::SimpleBlock(_) => (), - MatroskaTag::Block(_) => (), - _ => eprintln!("{} {tag:?}", r.position), + MatroskaTag::SimpleBlock(_) => (), // println!("{} SimpleBlock", r.position), + MatroskaTag::Block(_) => (), // println!("{} Block", r.position), + _ => println!("{} {tag:?}", r.position), } } Ok(()) |