summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-10-24 08:05:46 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-10-24 08:05:46 +0000
commit3126dbefc6a12214c2c8b475d6c33e3108441f60 (patch)
treee96606d18826c196b0af6b27ccc76d77fcb3191e
parent6441487ca5f20cdce453c65fc251cf12a07d4693 (diff)
downloadATCD-3126dbefc6a12214c2c8b475d6c33e3108441f60.tar.gz
Catch by reference
-rw-r--r--TAO/tests/POA/On_Demand_Act_Direct_Coll/Client_Task.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/POA/On_Demand_Act_Direct_Coll/Client_Task.cpp b/TAO/tests/POA/On_Demand_Act_Direct_Coll/Client_Task.cpp
index 75f8e2d482e..5064d87f5a7 100644
--- a/TAO/tests/POA/On_Demand_Act_Direct_Coll/Client_Task.cpp
+++ b/TAO/tests/POA/On_Demand_Act_Direct_Coll/Client_Task.cpp
@@ -55,12 +55,12 @@ Client_Task::svc (void)
}
test->shutdown ();
}
- catch (CORBA::INTERNAL)
+ catch (const CORBA::INTERNAL&)
{
if (this->except_)
{
ACE_DEBUG ((LM_DEBUG,
- "OK: Client_Task Expected exception with"
+ "OK: Client_Task Expected excep with "
"direct collocation received\n"));
status = 0;
}