diff options
author | Max Kellermann <max@duempel.org> | 2012-06-12 22:29:04 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-06-12 22:29:04 +0200 |
commit | ae70875f45c6d7f1bb0f703179035709d909978a (patch) | |
tree | 98319b849a72c32b4cdddcee42e070ed6a085c54 /src/archive_list.c | |
parent | eda7410f4c87e29e0c77950963a7b9ccf7069097 (diff) | |
download | mpd-ae70875f45c6d7f1bb0f703179035709d909978a.tar.gz mpd-ae70875f45c6d7f1bb0f703179035709d909978a.tar.xz mpd-ae70875f45c6d7f1bb0f703179035709d909978a.zip |
cmdline: consistent plugin listings
Diffstat (limited to 'src/archive_list.c')
-rw-r--r-- | src/archive_list.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/archive_list.c b/src/archive_list.c index 39eaf4d69..6c1079c1a 100644 --- a/src/archive_list.c +++ b/src/archive_list.c @@ -72,19 +72,6 @@ archive_plugin_from_name(const char *name) return NULL; } -void archive_plugin_print_all_suffixes(FILE * fp) -{ - archive_plugins_for_each(plugin) { - const char *const*suffixes = plugin->suffixes; - while (suffixes && *suffixes) { - fprintf(fp, "%s ", *suffixes); - suffixes++; - } - } - fprintf(fp, "\n"); - fflush(fp); -} - void archive_plugin_init_all(void) { for (unsigned i = 0; archive_plugins[i] != NULL; ++i) { |