diff options
author | Max Kellermann <max@duempel.org> | 2009-12-16 16:04:16 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-16 15:55:48 +0100 |
commit | b009970af7db696b95da1fcea6656a42068fcb1c (patch) | |
tree | 55470eb3bea2445ee6753bf1901b6117c0cc0619 /src/archive_list.c | |
parent | bd97586cc48431ebb3e5be7cdfcae435458dc508 (diff) | |
download | mpd-b009970af7db696b95da1fcea6656a42068fcb1c.tar.gz mpd-b009970af7db696b95da1fcea6656a42068fcb1c.tar.xz mpd-b009970af7db696b95da1fcea6656a42068fcb1c.zip |
archive/bz2: renamed archive sources and plugin variables
Diffstat (limited to '')
-rw-r--r-- | src/archive_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/archive_list.c b/src/archive_list.c index 6331a95fd..b32bd6635 100644 --- a/src/archive_list.c +++ b/src/archive_list.c @@ -25,13 +25,13 @@ #include <string.h> #include <glib.h> -extern const struct archive_plugin bz2_plugin; +extern const struct archive_plugin bz2_archive_plugin; extern const struct archive_plugin zzip_archive_plugin; extern const struct archive_plugin iso9660_archive_plugin; static const struct archive_plugin *const archive_plugins[] = { #ifdef HAVE_BZ2 - &bz2_plugin, + &bz2_archive_plugin, #endif #ifdef HAVE_ZZIP &zzip_archive_plugin, |