summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-10 13:00:17 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-10 13:00:17 +0000
commitf5265a5e47deaade652c0716b5378d5398b7dd3b (patch)
treec9534fe12ac4e970b933d8ceb9b9cddf16c60861
parentcf39936ae25985fdd553dd8205e8ed94d9d17253 (diff)
downloadATCD-f5265a5e47deaade652c0716b5378d5398b7dd3b.tar.gz
-rw-r--r--TAO/tests/RTScheduling/Scheduling_Interceptor/test_client.cpp4
-rw-r--r--TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/RTScheduling/Scheduling_Interceptor/test_client.cpp b/TAO/tests/RTScheduling/Scheduling_Interceptor/test_client.cpp
index 53cdcc05d76..474cc501061 100644
--- a/TAO/tests/RTScheduling/Scheduling_Interceptor/test_client.cpp
+++ b/TAO/tests/RTScheduling/Scheduling_Interceptor/test_client.cpp
@@ -90,11 +90,11 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
ACE_DEBUG ((LM_DEBUG,
"Making a one-way request\n"));
- server->one_way (ior.c_str ());
+ server->one_way (ACE_TEXT_ALWAYS_CHAR(ior.c_str ()));
ACE_DEBUG ((LM_DEBUG,
"Making a two-way request\n"));
- server->two_way (ior.c_str ());
+ server->two_way (ACE_TEXT_ALWAYS_CHAR(ior.c_str ()));
current->end_scheduling_segment (name);
diff --git a/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp b/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp
index 51a10e36273..320e300caa4 100644
--- a/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp
+++ b/TAO/tests/RTScheduling/Scheduling_Interceptor/test_server.cpp
@@ -6,7 +6,7 @@
#include "ace/Get_Opt.h"
#include "ace/OS_NS_stdio.h"
-const ACE_TCHAR* filename = "test.ior";
+const ACE_TCHAR* filename = ACE_TEXT("test.ior");
class test_impl : public POA_test
{