diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-09 08:16:07 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-09 08:16:07 +0000 |
commit | a0db75a69e69552f204445bde54314de9498b09f (patch) | |
tree | 6c36685c0b897a90c7d9506957c227415e28a01f /cppe/src/IceE/Time.cpp | |
parent | - IceE now supports datagram, batch datagram and secure modes. (diff) | |
download | ice-a0db75a69e69552f204445bde54314de9498b09f.tar.bz2 ice-a0db75a69e69552f204445bde54314de9498b09f.tar.xz ice-a0db75a69e69552f204445bde54314de9498b09f.zip |
Fix bug with Time. Some minor changes.
Diffstat (limited to 'cppe/src/IceE/Time.cpp')
-rw-r--r-- | cppe/src/IceE/Time.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/src/IceE/Time.cpp b/cppe/src/IceE/Time.cpp index 15497a1f608..a42ac3fa963 100644 --- a/cppe/src/IceE/Time.cpp +++ b/cppe/src/IceE/Time.cpp @@ -35,7 +35,7 @@ IceUtil::Time::now() // absolute time on CE since GetLocalTime doesn't have millisecond // resolution. // - return Time(GetTickCount() * 1000); + return Time(static_cast<Int64>(GetTickCount()) * 1000); #elif defined(_WIN32) struct _timeb tb; _ftime(&tb); |