diff options
author | Max Kellermann <max@duempel.org> | 2012-02-12 18:25:46 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-02-12 18:29:05 +0100 |
commit | 4a23a4bfee5c7b213da4f72ae858ab69840ccbdc (patch) | |
tree | 70d084568f2539f259c97d7c1cfe6e796a0a691b /src/tag_ape.c | |
parent | ac3ad452c03292e4c57b0d0e21c2dd407eb03a27 (diff) | |
download | mpd-4a23a4bfee5c7b213da4f72ae858ab69840ccbdc.tar.gz mpd-4a23a4bfee5c7b213da4f72ae858ab69840ccbdc.tar.xz mpd-4a23a4bfee5c7b213da4f72ae858ab69840ccbdc.zip |
tag_{ape,id3}: remove the _load() functions
Use _scan() instead, to have more control.
Diffstat (limited to 'src/tag_ape.c')
-rw-r--r-- | src/tag_ape.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/tag_ape.c b/src/tag_ape.c index 068a9aa6d..31c177aa7 100644 --- a/src/tag_ape.c +++ b/src/tag_ape.c @@ -101,15 +101,3 @@ tag_ape_scan2(const char *path_fs, return tag_ape_scan(path_fs, tag_ape_callback, &ctx); } - -struct tag * -tag_ape_load(const char *path_fs) -{ - struct tag *tag = tag_new(); - if (!tag_ape_scan2(path_fs, &add_tag_handler, tag)) { - tag_free(tag); - tag = NULL; - } - - return tag; -} |