diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 18:05:09 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 18:05:09 +0000 |
commit | 015a3a74ead53daca72a191e8d44482bf1684ca8 (patch) | |
tree | 029aca663858f6153fb3a66590981836aea3fb69 /cppe/demo/IceE/throughput/Client.cpp | |
parent | remove Time::toString(). (diff) | |
download | ice-015a3a74ead53daca72a191e8d44482bf1684ca8.tar.bz2 ice-015a3a74ead53daca72a191e8d44482bf1684ca8.tar.xz ice-015a3a74ead53daca72a191e8d44482bf1684ca8.zip |
Fixed decimal place issue
Diffstat (limited to 'cppe/demo/IceE/throughput/Client.cpp')
-rw-r--r-- | cppe/demo/IceE/throughput/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/demo/IceE/throughput/Client.cpp b/cppe/demo/IceE/throughput/Client.cpp index 88076b59e20..2305757ed2f 100644 --- a/cppe/demo/IceE/throughput/Client.cpp +++ b/cppe/demo/IceE/throughput/Client.cpp @@ -328,8 +328,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) } tm = Ice::Time::now() - tm; - printf("time for %d sequences: %fms\n", repetitions, tm.toMicroSeconds() * 1000.0); - printf("time per sequence: %fms\n", (tm / repetitions).toMicroSeconds() * 1000.0); + printf("time for %d sequences: %fms\n", repetitions, tm.toMicroSeconds() / 1000.0); + printf("time per sequence: %fms\n", (tm / repetitions).toMicroSeconds() / 1000.0); int wireSize = 0; switch(currentType) { |