diff options
author | Michael Vogt <mvo@debian.org> | 2008-10-28 18:14:29 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2008-10-28 18:14:29 +0100 |
commit | 3c8cda8b05d6eeaef76c7ccc673fe378b0c74f37 (patch) | |
tree | 3b77f2863a7fb6042d159eef95f17cff4016cbdf /apt-pkg/indexcopy.cc | |
parent | d210bd7f6a72a2b24a1402f51b39c61438482827 (diff) |
fix various -Wall warnings
Diffstat (limited to 'apt-pkg/indexcopy.cc')
-rw-r--r-- | apt-pkg/indexcopy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/indexcopy.cc b/apt-pkg/indexcopy.cc index b30777d8d..9e5c03e0b 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -639,7 +639,7 @@ bool SigVerify::CopyAndVerify(string CDROM,string Name,vector<string> &SigList, // Open the Release file and add it to the MetaIndex if(!MetaIndex->Load(*I+"Release")) { - _error->Error(MetaIndex->ErrorText.c_str()); + _error->Error("%s",MetaIndex->ErrorText.c_str()); return false; } |