summaryrefslogtreecommitdiff
path: root/src/id3v2.rs
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2020-02-10 13:57:10 +0100
committerTom Smeding <tom.smeding@gmail.com>2020-02-10 13:57:10 +0100
commitdddf79cd0e1ac1c79d10d9802bf90ee1600e16aa (patch)
treebedf1b6fefb9675edd6811333b0883b023c4f59a /src/id3v2.rs
parent38b258bea2c6fc003ecb0e741b71c7b01fdeca77 (diff)
Allow starting afresh with a new ID3v2.3 tag
Diffstat (limited to 'src/id3v2.rs')
-rw-r--r--src/id3v2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/id3v2.rs b/src/id3v2.rs
index b427845..f65260d 100644
--- a/src/id3v2.rs
+++ b/src/id3v2.rs
@@ -50,7 +50,7 @@ fn encode_string(s: &str) -> io::Result<Vec<u8>> {
#[derive(Debug)]
pub struct ID3v2 {
header_size: usize,
- version_sub: u8, // ID3v2.{}
+ pub version_sub: u8, // ID3v2.{}
pub frames: Vec<RawFrame>,
}