Fixed bug in display code for peer percentage progress.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@325 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-03-05 02:20:45 +00:00
parent c15d840962
commit 2dc7ffdb8f
7 changed files with 25 additions and 17 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ DownloadList::erase(iterator itr) {
void
DownloadList::clear() {
std::for_each(begin(), end(), func::call_delete());
std::for_each(begin(), end(), func::call_delete<Download>());
Base::clear();
}