summaryrefslogtreecommitdiff
path: root/TAO/tests/AMH_Exceptions/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/AMH_Exceptions/client.cpp')
-rw-r--r--TAO/tests/AMH_Exceptions/client.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/AMH_Exceptions/client.cpp b/TAO/tests/AMH_Exceptions/client.cpp
index 13237024c88..b8f254e620e 100644
--- a/TAO/tests/AMH_Exceptions/client.cpp
+++ b/TAO/tests/AMH_Exceptions/client.cpp
@@ -15,15 +15,15 @@ main (int argc, char *argv[])
ACE_TRY_NEW_ENV
{
CORBA::ORB_var orb =
- CORBA::ORB_init (argc, argv, "" TAO_ENV_ARG_PARAMETER);
+ CORBA::ORB_init (argc, argv, "" ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
CORBA::Object_var object =
- orb->string_to_object (ior TAO_ENV_ARG_PARAMETER);
+ orb->string_to_object (ior ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
Test::Roundtrip_var roundtrip =
- Test::Roundtrip::_narrow (object.in () TAO_ENV_ARG_PARAMETER);
+ Test::Roundtrip::_narrow (object.in () ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
if (CORBA::is_nil (roundtrip.in ()))
@@ -35,7 +35,7 @@ main (int argc, char *argv[])
}
long long unsigned int time = 10;
- roundtrip->test_method (time TAO_ENV_ARG_PARAMETER);
+ roundtrip->test_method (time ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
}
ACE_CATCHANY