diff options
author | David Kalnischkies <david@kalnischkies.de> | 2015-03-09 15:54:39 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-03-16 18:01:21 +0100 |
commit | 2b4cead3c8eb3afb5aa5390b88c511477a7628d8 (patch) | |
tree | 2a0872e4022bb5d67bef3509d5285d846cb86a66 /apt-pkg/sourcelist.cc | |
parent | 2f6a2fbbdc9f76dc4eace83a427013f4e1c03afc (diff) |
fix some new compiler warnings reported by gcc-5
Git-Dch: Ignore
Diffstat (limited to 'apt-pkg/sourcelist.cc')
-rw-r--r-- | apt-pkg/sourcelist.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc index 7170e8b5b..8b960572b 100644 --- a/apt-pkg/sourcelist.cc +++ b/apt-pkg/sourcelist.cc @@ -331,7 +331,7 @@ bool pkgSourceList::ParseFileOldStyle(string File) { // Open the stream for reading ifstream F(File.c_str(),ios::in /*| ios::nocreate*/); - if (!F != 0) + if (F.fail() == true) return _error->Errno("ifstream::ifstream",_("Opening %s"),File.c_str()); // CNC:2003-12-10 - 300 is too short. |