summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-06 15:05:20 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-06 15:05:20 +0000
commit243e0d36753b80cb299cbf13faad8632f26a1568 (patch)
tree058c56cab498dad800c0f2c5cb61102776e30813
parentf3cd4c89139855007c6b9ec5d49ff52f0667c11b (diff)
downloadATCD-243e0d36753b80cb299cbf13faad8632f26a1568.tar.gz
-rw-r--r--TAO/tests/InterOp-Naming/INS_test_client.cpp2
-rw-r--r--TAO/tests/InterOp-Naming/Server_i.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/InterOp-Naming/INS_test_client.cpp b/TAO/tests/InterOp-Naming/INS_test_client.cpp
index 6b0180440b3..9014f6b8bab 100644
--- a/TAO/tests/InterOp-Naming/INS_test_client.cpp
+++ b/TAO/tests/InterOp-Naming/INS_test_client.cpp
@@ -63,7 +63,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
}
else
{
- objref = orb->resolve_initial_references (argv[i]);
+ objref = orb->resolve_initial_references (ACE_TEXT_ALWAYS_CHAR(argv[i]));
if (CORBA::is_nil (objref.in ()))
ACE_ERROR_RETURN ((LM_ERROR,
diff --git a/TAO/tests/InterOp-Naming/Server_i.cpp b/TAO/tests/InterOp-Naming/Server_i.cpp
index 83005a9a336..145b9d3763b 100644
--- a/TAO/tests/InterOp-Naming/Server_i.cpp
+++ b/TAO/tests/InterOp-Naming/Server_i.cpp
@@ -43,7 +43,7 @@ Server_i::parse_args (void)
break;
case 'i': // For Testing the InterOperable Naming Service.
- this->ins_ = CORBA::string_dup (get_opts.opt_arg ());
+ this->ins_ = CORBA::string_dup (ACE_TEXT_ALWAYS_CHAR(get_opts.opt_arg ()));
break;
case '?': // display help for use of the server.