summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-01-25 19:28:17 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-01-25 19:28:17 +0000
commit89703b40c9c355cfb001dbe60275edd9b0c2d827 (patch)
tree19ab9ebddc464af3a9ad70e1a2dae15465fe723a
parent97a6544f93b859c93795abdf4c3c23f424b20561 (diff)
downloadATCD-89703b40c9c355cfb001dbe60275edd9b0c2d827.tar.gz
-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 75c35affebb..c7549b6bbd0 100644
--- a/TAO/tao/Messaging/Messaging_Policy_i.cpp
+++ b/TAO/tao/Messaging/Messaging_Policy_i.cpp
@@ -94,8 +94,8 @@ TAO_RelativeRoundtripTimeoutPolicy::hook (TAO_ORB_Core *orb_core,
TimeBase::TimeT t = p->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));
// Set the flag once all operations complete successfully
has_timeout = true;