summaryrefslogtreecommitdiff
path: root/TAO/tests/RTCORBA/Persistent_IOR/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/RTCORBA/Persistent_IOR/client.cpp')
-rw-r--r--TAO/tests/RTCORBA/Persistent_IOR/client.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/RTCORBA/Persistent_IOR/client.cpp b/TAO/tests/RTCORBA/Persistent_IOR/client.cpp
index d8de32f08be..9fc50f20a4b 100644
--- a/TAO/tests/RTCORBA/Persistent_IOR/client.cpp
+++ b/TAO/tests/RTCORBA/Persistent_IOR/client.cpp
@@ -58,7 +58,7 @@ main (int argc, char **argv)
CORBA::ORB_init (argc,
argv,
0
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
int result =
@@ -68,23 +68,23 @@ main (int argc, char **argv)
CORBA::Object_var object =
orb->string_to_object (ior
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
test_var test =
test::_narrow (object.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
for (int i = 0; i < iterations; i++)
{
- test->method (TAO_ENV_SINGLE_ARG_PARAMETER);
+ test->method (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
if (shutdown_server)
{
- test->shutdown (TAO_ENV_SINGLE_ARG_PARAMETER);
+ test->shutdown (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
}