diff options
author | Max Kellermann <max@duempel.org> | 2014-01-08 19:43:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-08 19:48:55 +0100 |
commit | ac1983eae32caa7c6f10ec4bab32a9657bdb2668 (patch) | |
tree | 5139b83e3bef91741750f83dcdd9fea9f8304e7a /src/decoder | |
parent | 33c5fc95b4281520fd54c76e4f898d8256b333f7 (diff) | |
download | mpd-ac1983eae32caa7c6f10ec4bab32a9657bdb2668.tar.gz mpd-ac1983eae32caa7c6f10ec4bab32a9657bdb2668.tar.xz mpd-ac1983eae32caa7c6f10ec4bab32a9657bdb2668.zip |
tag/TagBuilder: rename Commit() to CommitNew()
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/VorbisComments.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/VorbisComments.cxx b/src/decoder/VorbisComments.cxx index 2adc498d5..e6a99ca6b 100644 --- a/src/decoder/VorbisComments.cxx +++ b/src/decoder/VorbisComments.cxx @@ -137,5 +137,5 @@ vorbis_comments_to_tag(char **comments) vorbis_comments_scan(comments, &add_tag_handler, &tag_builder); return tag_builder.IsEmpty() ? nullptr - : tag_builder.Commit(); + : tag_builder.CommitNew(); } |