summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/tests/NestedUpcall/MT_Client_Test/client.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/TAO/tests/NestedUpcall/MT_Client_Test/client.cpp b/TAO/tests/NestedUpcall/MT_Client_Test/client.cpp
index e9c7531dde4..80ed7e05974 100644
--- a/TAO/tests/NestedUpcall/MT_Client_Test/client.cpp
+++ b/TAO/tests/NestedUpcall/MT_Client_Test/client.cpp
@@ -191,11 +191,10 @@ MT_Client::init (int argc, ACE_TCHAR **argv,
// Make a copy of argv since ORB_init will change it.
this->argc_ = argc;
- this->argv_ = new char *[argc];
+ this->argv_ = new ACE_TCHAR *[argc];
for (int i = 0; i < argc; i++)
this->argv_[i] = argv[i];
-
this->client_number_ = client_number;
try