diff options
Diffstat (limited to 'cpp/src/IcePatch/Client.cpp')
-rw-r--r-- | cpp/src/IcePatch/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch/Client.cpp b/cpp/src/IcePatch/Client.cpp index ac3d894ce03..fa9093b2882 100644 --- a/cpp/src/IcePatch/Client.cpp +++ b/cpp/src/IcePatch/Client.cpp @@ -158,9 +158,9 @@ public: cout << "\b\b\b\b\b" << setw(3) << percent << "% " << flush; } - virtual void finishedDownload(Int total) + virtual void finishedDownload(Int) { - cout << "\b\b\b\b\b" << "100% " << flush; + cout << "\b\b\b\b\b" << setw(3) << 100 << "% " << flush; } virtual void startUncompress(Int) |