diff options
author | Max Kellermann <max@duempel.org> | 2014-08-11 21:46:13 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-11 21:48:25 +0200 |
commit | 3a111e5d744f875cde11fe755d03d3df3519f8a2 (patch) | |
tree | 82507f0e23cb77145317222ec628dc5243af6846 /src/fs/io/GunzipReader.cxx | |
parent | fc0c5e7359cff821468138a3f8ce49db52c80e57 (diff) | |
download | mpd-3a111e5d744f875cde11fe755d03d3df3519f8a2.tar.gz mpd-3a111e5d744f875cde11fe755d03d3df3519f8a2.tar.xz mpd-3a111e5d744f875cde11fe755d03d3df3519f8a2.zip |
fs/io/GzipOutputStream,GunzipReader: move zlib_domain to src/lib/zlib/Domain.cxx
Diffstat (limited to 'src/fs/io/GunzipReader.cxx')
-rw-r--r-- | src/fs/io/GunzipReader.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fs/io/GunzipReader.cxx b/src/fs/io/GunzipReader.cxx index 388b26412..ad5e41784 100644 --- a/src/fs/io/GunzipReader.cxx +++ b/src/fs/io/GunzipReader.cxx @@ -19,11 +19,10 @@ #include "config.h" #include "GunzipReader.hxx" +#include "lib/zlib/Domain.hxx" #include "util/Error.hxx" #include "util/Domain.hxx" -const Domain zlib_domain("zlib"); - GunzipReader::GunzipReader(Reader &_next, Error &error) :next(_next), eof(false) { |