summaryrefslogtreecommitdiff
path: root/TAO/tests/Oneways_Invoking_Twoways
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-09-16 11:54:19 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-09-16 11:54:19 +0000
commit313939ee0d7df7a6226e1302c22aee4272555e47 (patch)
tree3e27f2c5603085852b0a285c3a4e4a742889f452 /TAO/tests/Oneways_Invoking_Twoways
parent7c27ae770cf7974573af5e125f8e3da65a7c914b (diff)
downloadATCD-313939ee0d7df7a6226e1302c22aee4272555e47.tar.gz
Tue Sep 16 11:32:00 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/Oneways_Invoking_Twoways')
-rw-r--r--TAO/tests/Oneways_Invoking_Twoways/client.cpp4
-rw-r--r--TAO/tests/Oneways_Invoking_Twoways/server.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Oneways_Invoking_Twoways/client.cpp b/TAO/tests/Oneways_Invoking_Twoways/client.cpp
index 533f02cc6fb..12740f63397 100644
--- a/TAO/tests/Oneways_Invoking_Twoways/client.cpp
+++ b/TAO/tests/Oneways_Invoking_Twoways/client.cpp
@@ -10,9 +10,9 @@ ACE_RCSID(Muxing, client, "$Id$")
const char *ior = "file://test.ior";
int
-parse_args (int argc, char *argv[])
+parse_args (int argc, ACE_TCHAR *argv[])
{
- ACE_Get_Opt get_opts (argc, argv, "k:");
+ ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("k:"));
int c;
while ((c = get_opts ()) != -1)
diff --git a/TAO/tests/Oneways_Invoking_Twoways/server.cpp b/TAO/tests/Oneways_Invoking_Twoways/server.cpp
index ed8c241129b..78d170c9352 100644
--- a/TAO/tests/Oneways_Invoking_Twoways/server.cpp
+++ b/TAO/tests/Oneways_Invoking_Twoways/server.cpp
@@ -9,9 +9,9 @@ ACE_RCSID(Oneways_Invoking_Twoways, server, "$Id$")
const char *ior_output_file = "test.ior";
int
-parse_args (int argc, char *argv[])
+parse_args (int argc, ACE_TCHAR *argv[])
{
- ACE_Get_Opt get_opts (argc, argv, "o:");
+ ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("o:"));
int c;
while ((c = get_opts ()) != -1)