diff options
author | Marc Laukien <marc@zeroc.com> | 2004-10-06 14:21:31 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-10-06 14:21:31 +0000 |
commit | d028d803f9faec8ae3dcaabc266b4df9fcb760d4 (patch) | |
tree | 41af99797cec464e4cfdbe4e2b5178fb290a92f5 /cpp/src/IceUtil/GC.cpp | |
parent | Fix (diff) | |
download | ice-d028d803f9faec8ae3dcaabc266b4df9fcb760d4.tar.bz2 ice-d028d803f9faec8ae3dcaabc266b4df9fcb760d4.tar.xz ice-d028d803f9faec8ae3dcaabc266b4df9fcb760d4.zip |
IceUtil::Time fixes ; glacier fixes
Diffstat (limited to 'cpp/src/IceUtil/GC.cpp')
-rw-r--r-- | cpp/src/IceUtil/GC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/GC.cpp b/cpp/src/IceUtil/GC.cpp index f616f344d13..736fa490202 100644 --- a/cpp/src/IceUtil/GC.cpp +++ b/cpp/src/IceUtil/GC.cpp @@ -240,7 +240,7 @@ IceUtil::GC::collectGarbage() if(_statsCallback) { - stats.msec = (Time::now() - t) * 1000.0L; + stats.time = Time::now() - t; stats.collected = counts.size(); _statsCallback(stats); } |