summaryrefslogtreecommitdiff
path: root/TAO/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-11-23 19:34:27 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-11-23 19:34:27 +0000
commit875856ff04833eb629a54e02245b8f867b7c248e (patch)
tree8b4ad56a509f5a34f0df75f1ef533440fcbc8b7e /TAO/tests
parent2bba7ea0f1c08dc6637cdf28c065815607b587c7 (diff)
downloadATCD-875856ff04833eb629a54e02245b8f867b7c248e.tar.gz
Fri Nov 23 19:33:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests')
-rw-r--r--TAO/tests/CodeSets/simple/client.cpp4
-rw-r--r--TAO/tests/Param_Test/server.cpp6
2 files changed, 3 insertions, 7 deletions
diff --git a/TAO/tests/CodeSets/simple/client.cpp b/TAO/tests/CodeSets/simple/client.cpp
index 3a741b077c9..850cdc4664c 100644
--- a/TAO/tests/CodeSets/simple/client.cpp
+++ b/TAO/tests/CodeSets/simple/client.cpp
@@ -58,9 +58,7 @@ int main (int argc, char *argv[])
try
{
// Init the orb
- CORBA::ORB_var orb= CORBA::ORB_init (argc,
- argv,
- "");
+ CORBA::ORB_var orb= CORBA::ORB_init (argc, argv);
// Get IOR from command line (or file)
if (argc != 2)
diff --git a/TAO/tests/Param_Test/server.cpp b/TAO/tests/Param_Test/server.cpp
index 59de4d8d5ff..6dde3f0571a 100644
--- a/TAO/tests/Param_Test/server.cpp
+++ b/TAO/tests/Param_Test/server.cpp
@@ -154,11 +154,9 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
orb_ptr->run ();
- good_poa->destroy (1,
- 1);
+ good_poa->destroy (1, 1);
- oa_ptr->destroy (1,
- 1);
+ oa_ptr->destroy (1, 1);
}
catch (const CORBA::SystemException& sysex)
{