diff options
Diffstat (limited to 'cppe/test/IceE/uuid/Client.cpp')
-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; |