summaryrefslogtreecommitdiff
path: root/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp')
-rw-r--r--TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp b/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp
index e33c63186f9..57a87124294 100644
--- a/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp
+++ b/TAO/tests/Oneways_Invoking_Twoways/Receiver_i.cpp
@@ -19,14 +19,13 @@ Receiver_i::~Receiver_i (void)
CORBA::Long
-Receiver_i::receive_call (ACE_ENV_SINGLE_ARG_DECL)
+Receiver_i::receive_call (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) Doing a ping... \n"));
- this->sender_->ping (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK_RETURN (-1);
+ this->sender_->ping ();
return this->no_calls_++;
}