From acccec67be25510523bbf6d28abc1f2d204b4ffa Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Tue, 5 Jun 2007 14:32:09 +0000 Subject: [PATCH] Fixed compilation error. --- src/TorrentConsoleDownloadEngine.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TorrentConsoleDownloadEngine.cc b/src/TorrentConsoleDownloadEngine.cc index c8fd7034..401c7939 100644 --- a/src/TorrentConsoleDownloadEngine.cc +++ b/src/TorrentConsoleDownloadEngine.cc @@ -50,7 +50,7 @@ void TorrentConsoleDownloadEngine::sendStatistics() { } else { printf("%s/%sB %d%% %s D:%.2f", Util::abbrevSize(downloadLength).c_str(), - Util::abbrevSizellitos(totalLength).c_str(), + Util::abbrevSize(totalLength).c_str(), (totalLength == 0 ? 0 : (int)((downloadLength*100)/totalLength)), avgSpeed == 0 ? "-" : Util::secfmt(eta).c_str(),