diff options
author | Marc Laukien <marc@zeroc.com> | 2002-04-17 00:45:41 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-04-17 00:45:41 +0000 |
commit | 750036eb43f5a60fc8cdf31c5cee2f31c7051080 (patch) | |
tree | 10ee86852d3d7e28121687334a5b1b4938c405c8 /cpp/src/IcePatch/Client.cpp | |
parent | Updates to provide better ConfigParser error reporting in exceptions, and (diff) | |
download | ice-750036eb43f5a60fc8cdf31c5cee2f31c7051080.tar.bz2 ice-750036eb43f5a60fc8cdf31c5cee2f31c7051080.tar.xz ice-750036eb43f5a60fc8cdf31c5cee2f31c7051080.zip |
Fixes
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) |