diff options
author | Michael Vogt <mvo@debian.org> | 2013-08-08 15:40:15 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-08-08 15:40:15 +0200 |
commit | f52037d629aea696f938015e7f1ec037eb079af8 (patch) | |
tree | 925b27ed34466ec12778ba90728b0d1b358fc7f8 /apt-pkg/tagfile.h | |
parent | e9737c7f6a3e03b2975927ef9b04c1194026ed9c (diff) |
fix -Wall errors
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r-- | apt-pkg/tagfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index 126f4219d..fedd72701 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -84,7 +84,7 @@ class pkgTagSection Stop = this->Stop; }; - pkgTagSection() : Section(0), TagCount(0), Stop(0), d(NULL) {}; + pkgTagSection() : Section(0), TagCount(0), d(NULL), Stop(0) {}; virtual ~pkgTagSection() {}; }; |