aboutsummaryrefslogtreecommitdiff
path: root/src/tag_ape.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-02-12 18:25:46 +0100
committerMax Kellermann <max@duempel.org>2012-02-12 18:29:05 +0100
commit4a23a4bfee5c7b213da4f72ae858ab69840ccbdc (patch)
tree70d084568f2539f259c97d7c1cfe6e796a0a691b /src/tag_ape.c
parentac3ad452c03292e4c57b0d0e21c2dd407eb03a27 (diff)
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.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/tag_ape.c b/src/tag_ape.c
index 068a9aa6..31c177aa 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;
-}