summaryrefslogtreecommitdiff
path: root/TAO/tests/CodeSets/simple
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-12 21:09:49 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-12 21:09:49 +0000
commitc90922a8126920c770a875a7841b27e6671719e3 (patch)
treec7e3adf00387aff4622169ae733ea8e36dad878f /TAO/tests/CodeSets/simple
parenta7023801311233e15834467e761039434d1b203e (diff)
downloadATCD-c90922a8126920c770a875a7841b27e6671719e3.tar.gz
Sun Oct 12 23:06:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/CodeSets/simple')
-rw-r--r--TAO/tests/CodeSets/simple/client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/CodeSets/simple/client.cpp b/TAO/tests/CodeSets/simple/client.cpp
index c83d13989a9..36d0293e1e7 100644
--- a/TAO/tests/CodeSets/simple/client.cpp
+++ b/TAO/tests/CodeSets/simple/client.cpp
@@ -36,7 +36,7 @@ make_wstring (const char *str)
size_t len = ACE_OS::strlen (str) + 1;
wchar_t *wstr = new wchar_t[len];
ACE_DEBUG ((LM_DEBUG,
- "make_wstring: str = %s\n", ACE_TEXT_CHAR_TO_TCHAR (str)));
+ "make_wstring: str = %C\n", str));
for (size_t i = 0; i < len; i++)
{
char *t = const_cast<char *> (str);
@@ -94,7 +94,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
outarg >>= any_reply;
ACE_DEBUG ((LM_DEBUG,
- "Client sent %s, got %s\n", ACE_TEXT_CHAR_TO_TCHAR (bare_string), ACE_TEXT_CHAR_TO_TCHAR (reply.in ()) ));
+ "Client sent %C, got %C\n", bare_string, reply.in ()) );
if (ACE_OS::strcmp (bare_string, reply.in ()) != 0)
{
@@ -102,7 +102,7 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
}
ACE_DEBUG ((LM_DEBUG,
- "Client sent %s, got %s\n", ACE_TEXT_CHAR_TO_TCHAR (any_string), ACE_TEXT_CHAR_TO_TCHAR (any_reply) ));
+ "Client sent %C, got %C\n", any_string, any_reply) );
if (ACE_OS::strcmp (any_string, any_reply) != 0)
{