diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-03 02:24:12 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-03 02:24:12 +0000 |
commit | 09cbb10a09adafbc44f15d0390ba8d5fc248c943 (patch) | |
tree | 1ad56e49aaddbaaaaaa475948f97ecda3850d42b | |
parent | More fixes (diff) | |
download | ice-09cbb10a09adafbc44f15d0390ba8d5fc248c943.tar.bz2 ice-09cbb10a09adafbc44f15d0390ba8d5fc248c943.tar.xz ice-09cbb10a09adafbc44f15d0390ba8d5fc248c943.zip |
fix problem with UUID time reporting.
-rw-r--r-- | cppe/test/IceE/uuid/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/test/IceE/uuid/Client.cpp b/cppe/test/IceE/uuid/Client.cpp index 1aa12017482..3461f252afe 100644 --- a/cppe/test/IceE/uuid/Client.cpp +++ b/cppe/test/IceE/uuid/Client.cpp @@ -224,8 +224,8 @@ public: if(verbose) #endif { - tprintf("Each UUID took an average of %f micro seconds to generate and insert into a set<string>.\n", - (double) ((finish - start).toMicroSeconds()) / howMany); + tprintf("Each UUID took an average of %.04f ms to generate and insert into a set<string>.\n", + ((double) ((finish - start).toMilliSeconds())) / howMany); } return EXIT_SUCCESS; |