diff options
author | David Kalnischkies <david@kalnischkies.de> | 2015-08-31 17:48:54 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-08-31 17:48:54 +0200 |
commit | b830f576a81751f4b04bc889fa82aaca0e6fc3ea (patch) | |
tree | b44913a079dd19032ebb1bd40d93447c30778f4d /apt-pkg/deb/deblistparser.cc | |
parent | b2640c0afea4c3803ab46b130c960ea3029eb14d (diff) |
fix some unused parameter/variable warnings
Reported-By: gcc
Git-Dch: Ignore
Diffstat (limited to 'apt-pkg/deb/deblistparser.cc')
-rw-r--r-- | apt-pkg/deb/deblistparser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index d88e25e6f..7da908d75 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -371,8 +371,8 @@ unsigned short debListParser::VersionHash() status = not-installed, config-files, half-installed, unpacked, half-configured, triggers-awaited, triggers-pending, installed */ -bool debListParser::ParseStatus(pkgCache::PkgIterator &Pkg, - pkgCache::VerIterator &Ver) +bool debListParser::ParseStatus(pkgCache::PkgIterator &, + pkgCache::VerIterator &) { return true; } |