summaryrefslogtreecommitdiff
path: root/ace/Timer_Queue_T.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-04-10 05:47:14 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-04-10 05:47:14 +0000
commit28b2c9e1c1c13008203ec5aab3b38ab8d00bca1b (patch)
tree8f6ea3e182e22b4fe7be552771820fc4bdb2bf5f /ace/Timer_Queue_T.cpp
parent5f58692da16ffd52651d4c53595bd8ee20cb543e (diff)
downloadATCD-28b2c9e1c1c13008203ec5aab3b38ab8d00bca1b.tar.gz
ChangeLogTag: Wed Apr 16 07:40:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Timer_Queue_T.cpp')
-rw-r--r--ace/Timer_Queue_T.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Timer_Queue_T.cpp b/ace/Timer_Queue_T.cpp
index fa5e7706668..bb88bd66827 100644
--- a/ace/Timer_Queue_T.cpp
+++ b/ace/Timer_Queue_T.cpp
@@ -76,7 +76,7 @@ ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::calculate_timeout (ACE_Time_Value *m
return max_wait_time;
else
{
- ACE_Time_Value cur_time = this->gettimeofday ();
+ ACE_Time_Value cur_time (this->gettimeofday ());
if (this->earliest_time () > cur_time)
{
@@ -121,7 +121,7 @@ ACE_Timer_Queue_T<TYPE, FUNCTOR, ACE_LOCK>::calculate_timeout (ACE_Time_Value *m
}
else
{
- ACE_Time_Value cur_time = this->gettimeofday ();
+ ACE_Time_Value cur_time (this->gettimeofday ());
if (this->earliest_time () > cur_time)
{