diff options
Diffstat (limited to 'methods/gzip.cc')
-rw-r--r-- | methods/gzip.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/gzip.cc b/methods/gzip.cc index fbfd3bbac..c470807ac 100644 --- a/methods/gzip.cc +++ b/methods/gzip.cc @@ -36,7 +36,7 @@ class GzipMethod : public aptMethod public: - GzipMethod(std::string const &pProg) : aptMethod(pProg.c_str(),"1.1",SingleInstance | SendConfig), Prog(pProg) {}; + explicit GzipMethod(std::string const &pProg) : aptMethod(pProg.c_str(),"1.1",SingleInstance | SendConfig), Prog(pProg) {}; }; // GzipMethod::Fetch - Decompress the passed URI /*{{{*/ |