summaryrefslogtreecommitdiff
path: root/TAO/tests/Timed_Buffered_Oneways/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Timed_Buffered_Oneways/test_i.cpp')
-rw-r--r--TAO/tests/Timed_Buffered_Oneways/test_i.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/TAO/tests/Timed_Buffered_Oneways/test_i.cpp b/TAO/tests/Timed_Buffered_Oneways/test_i.cpp
index fbc9e7f8c4a..ffd86dd588a 100644
--- a/TAO/tests/Timed_Buffered_Oneways/test_i.cpp
+++ b/TAO/tests/Timed_Buffered_Oneways/test_i.cpp
@@ -15,7 +15,6 @@ test_i::method (CORBA::ULong request_number,
CORBA::ULong work)
{
ACE_Time_Value start (0);
- // HPUX seems to require this cast
start.msec (static_cast<long> (start_time));
ACE_DEBUG ((LM_DEBUG,
"server:\t%d took\t%dms\n",
@@ -39,7 +38,7 @@ void
test_i::shutdown (CORBA::Long start_time)
{
ACE_Time_Value start (0);
- start.msec (static_cast<long> (start_time)); // HPUX seems to require this cast
+ start.msec (static_cast<long> (start_time));
ACE_DEBUG ((LM_DEBUG, "server: Shutting down... (%dms)\n",
(ACE_OS::gettimeofday() - start).msec ()));
this->orb_->shutdown (false);