summaryrefslogtreecommitdiff
path: root/TAO/tests/BiDirectional
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:41:37 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:41:37 +0100
commit78045a2ee2bee3a4521af3606d671f644e409fc2 (patch)
tree2ccc4ee7c17b862b9f17c7a93c234e66ca1aadf9 /TAO/tests/BiDirectional
parentfe0a8e3c6c8bf1d10a71d1eee6a956c3560bd562 (diff)
downloadATCD-78045a2ee2bee3a4521af3606d671f644e409fc2.tar.gz
bool changes
Diffstat (limited to 'TAO/tests/BiDirectional')
-rw-r--r--TAO/tests/BiDirectional/test_i.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/BiDirectional/test_i.cpp b/TAO/tests/BiDirectional/test_i.cpp
index 0b3be60d958..b94de23c40e 100644
--- a/TAO/tests/BiDirectional/test_i.cpp
+++ b/TAO/tests/BiDirectional/test_i.cpp
@@ -13,7 +13,7 @@ void
Callback_i::shutdown (void)
{
ACE_DEBUG ((LM_DEBUG, "Performing clean shutdown\n"));
- this->orb_->shutdown (0);
+ this->orb_->shutdown (false);
}
void
@@ -80,5 +80,5 @@ Simple_Server_i::call_client (void)
void
Simple_Server_i::shutdown (void)
{
- this->orb_->shutdown (0);
+ this->orb_->shutdown (false);
}