summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-06-02 09:55:50 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-06-02 09:55:50 +0200
commit7a03ab755914edbf2494d5fe3f9b3eb9bd5bf2dd (patch)
treea702b9984ea818e35645db915e2b28d5a99d6564
parent4bb2475504a0f1b85d1358f8daeedb4c65f9f548 (diff)
downloadATCD-7a03ab755914edbf2494d5fe3f9b3eb9bd5bf2dd.tar.gz
Fixed compile errors
* TAO/examples/PluggableUDP/tests/Performance/server.cpp: * TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp:
-rw-r--r--TAO/examples/PluggableUDP/tests/Performance/server.cpp2
-rw-r--r--TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/examples/PluggableUDP/tests/Performance/server.cpp b/TAO/examples/PluggableUDP/tests/Performance/server.cpp
index 59fdd903710..91741c7b2b2 100644
--- a/TAO/examples/PluggableUDP/tests/Performance/server.cpp
+++ b/TAO/examples/PluggableUDP/tests/Performance/server.cpp
@@ -163,7 +163,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
ACE_DEBUG ((LM_DEBUG, "ORB finished\n"));
root_poa->destroy (1, // ethernalize objects
- 0) // wait for completion
+ 0); // wait for completion
orb->destroy ();
diff --git a/TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp b/TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp
index 66b11a2c88d..54cc2944398 100644
--- a/TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp
+++ b/TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp
@@ -17,7 +17,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
CORBA::ContainedSeq_var interfaces =
repo_->contents (CORBA::dk_Interface, // Any type of contained object.
- 1) // Exclude parents of interfaces.
+ 1); // Exclude parents of interfaces.
CORBA::ULong length = interfaces->length ();