summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_933_Regression/Messenger_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_933_Regression/Messenger_i.cpp')
-rw-r--r--TAO/tests/Bug_933_Regression/Messenger_i.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Bug_933_Regression/Messenger_i.cpp b/TAO/tests/Bug_933_Regression/Messenger_i.cpp
index 5985ba7ea30..3bd849e1337 100644
--- a/TAO/tests/Bug_933_Regression/Messenger_i.cpp
+++ b/TAO/tests/Bug_933_Regression/Messenger_i.cpp
@@ -43,11 +43,11 @@ Messenger_i::send_message (const CORBA::OctetSeq & user_name)
user_name_as_any >>= name;
ACE_DEBUG ((LM_DEBUG, "User's name: %C\n", name));
}
- catch (CORBA::SystemException &ex)
+ catch (const CORBA::SystemException &ex)
{
ex._tao_print_exception ("ERROR");
}
- catch (CORBA::Exception &e)
+ catch (const CORBA::Exception &e)
{
e._tao_print_exception ("ERROR");
}