diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2008-08-05 10:52:09 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2008-08-05 10:52:09 +0200 |
commit | 9b5d79ec68d5380f26b92cd0d9cb7af6a19ac849 (patch) | |
tree | 7d937a34f5d2e534d29c03a4d8d67c46430f74a1 /apt-pkg/indexcopy.cc | |
parent | 5aa95c863d9bc5b0de7dd1279d3ad672193cc3a6 (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; } |