summaryrefslogtreecommitdiff
path: root/TAO/tests/Two_Objects
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/Two_Objects
parent7c27ae770cf7974573af5e125f8e3da65a7c914b (diff)
downloadATCD-313939ee0d7df7a6226e1302c22aee4272555e47.tar.gz
Tue Sep 16 11:32:00 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/Two_Objects')
-rw-r--r--TAO/tests/Two_Objects/client.cpp4
-rw-r--r--TAO/tests/Two_Objects/server.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Two_Objects/client.cpp b/TAO/tests/Two_Objects/client.cpp
index 386a4cad980..581b2c69811 100644
--- a/TAO/tests/Two_Objects/client.cpp
+++ b/TAO/tests/Two_Objects/client.cpp
@@ -8,9 +8,9 @@ ACE_RCSID(Test, 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, "r:");
+ ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("r:"));
int c;
while ((c = get_opts ()) != -1)
diff --git a/TAO/tests/Two_Objects/server.cpp b/TAO/tests/Two_Objects/server.cpp
index 3fe5efa1091..e8d7a98ede4 100644
--- a/TAO/tests/Two_Objects/server.cpp
+++ b/TAO/tests/Two_Objects/server.cpp
@@ -12,9 +12,9 @@ int nthreads = 2;
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:n:l:t:");
+ ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("o:n:l:t:"));
int c;
while ((c = get_opts ()) != -1)