summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/Bug_2604_Regression
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-13 17:54:11 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-13 17:54:11 +0000
commit3a1b0573f0f940faa58539083994f611c9bcaebe (patch)
tree72a4b7fcaf3dd4ec55bc73d3336fa92db97ca706 /TAO/orbsvcs/tests/ImplRepo/Bug_2604_Regression
parent9056ba09d6abc8dc3c8b9b2b9b16b00e916db546 (diff)
downloadATCD-3a1b0573f0f940faa58539083994f611c9bcaebe.tar.gz
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/Bug_2604_Regression')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/Bug_2604_Regression/Messenger_i.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/Bug_2604_Regression/Messenger_i.cpp b/TAO/orbsvcs/tests/ImplRepo/Bug_2604_Regression/Messenger_i.cpp
index 769eadd5a2d..a6e927cdee9 100644
--- a/TAO/orbsvcs/tests/ImplRepo/Bug_2604_Regression/Messenger_i.cpp
+++ b/TAO/orbsvcs/tests/ImplRepo/Bug_2604_Regression/Messenger_i.cpp
@@ -5,8 +5,9 @@ CORBA::Boolean
Messenger_i::send_message (const char *user_name, const char *subject,
char *& message)
{
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Message from: %s\nSubject: %s\nMessage: %s"
- "\n"), user_name, subject, message));
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_TEXT ("Message from: %C\nSubject: %C\nMessage: %C\n"),
+ user_name, subject, message));
const char *reply = "A reply from the server.";
message = CORBA::string_dup (reply);
if (++this->count_ == 6)