summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2429_Regression/ChildServant.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2429_Regression/ChildServant.cpp')
-rw-r--r--TAO/tests/Bug_2429_Regression/ChildServant.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Bug_2429_Regression/ChildServant.cpp b/TAO/tests/Bug_2429_Regression/ChildServant.cpp
index f6617bc55d9..5f7ad67d59d 100644
--- a/TAO/tests/Bug_2429_Regression/ChildServant.cpp
+++ b/TAO/tests/Bug_2429_Regression/ChildServant.cpp
@@ -19,12 +19,12 @@ ChildServant::parentMethod ()
ACE_THROW_SPEC((CORBA::SystemException))
{
// Just throw an exception
- ACE_THROW (CORBA::INTERNAL ());
+ throw CORBA::INTERNAL ();
}
void
ChildServant::shutdown ()
ACE_THROW_SPEC((CORBA::SystemException))
{
- this->orb_->shutdown(0 ACE_ENV_ARG_PARAMETER);
+ this->orb_->shutdown(0);
}