summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-01-26 19:22:20 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-01-26 19:22:20 +0000
commita946563b87460ffe11382524536d949bd7cf6684 (patch)
tree50e1207bbbd9fe21ca51279e474d485728ed94d8
parent0ecb424a94ab5d3d3f72b038cb350d2df295f3cd (diff)
downloadATCD-a946563b87460ffe11382524536d949bd7cf6684.tar.gz
Fri Jan 26 18:55:12 UTC 2007 Johnny Willemsen <jwillmesen@remedy.nl>
-rw-r--r--TAO/tao/Messaging/Messaging_Policy_i.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Messaging/Messaging_Policy_i.cpp b/TAO/tao/Messaging/Messaging_Policy_i.cpp
index c7549b6bbd0..022de7a4acf 100644
--- a/TAO/tao/Messaging/Messaging_Policy_i.cpp
+++ b/TAO/tao/Messaging/Messaging_Policy_i.cpp
@@ -176,8 +176,8 @@ TAO_RelativeRoundtripTimeoutPolicy::set_time_value (ACE_Time_Value &time_value)
TimeBase::TimeT t = this->relative_expiry_;
TimeBase::TimeT seconds = t / 10000000u;
TimeBase::TimeT microseconds = (t % 10000000u) / 10;
- time_value.set (seconds,
- microseconds);
+ time_value.set (ACE_U64_TO_U32 (seconds),
+ ACE_U64_TO_U32 (microseconds));
if (TAO_debug_level > 0)
{