diff options
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/scale')
-rw-r--r-- | TAO/orbsvcs/tests/ImplRepo/scale/server_i.cpp | 4 | ||||
-rw-r--r-- | TAO/orbsvcs/tests/ImplRepo/scale/server_i.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/scale/server_i.cpp b/TAO/orbsvcs/tests/ImplRepo/scale/server_i.cpp index 55c240db56a..24ad06e5079 100644 --- a/TAO/orbsvcs/tests/ImplRepo/scale/server_i.cpp +++ b/TAO/orbsvcs/tests/ImplRepo/scale/server_i.cpp @@ -51,9 +51,9 @@ Server_i::~Server_i() } int -Server_i::parse_args (int argc, char* argv[]) +Server_i::parse_args (int argc, ACE_TCHAR* argv[]) { - ACE_Get_Opt get_opts (argc, argv, "p:c:h"); + ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("p:c:h")); int c; while ((c = get_opts ()) != -1) diff --git a/TAO/orbsvcs/tests/ImplRepo/scale/server_i.h b/TAO/orbsvcs/tests/ImplRepo/scale/server_i.h index 24d8dc97c8d..a27ea52189b 100644 --- a/TAO/orbsvcs/tests/ImplRepo/scale/server_i.h +++ b/TAO/orbsvcs/tests/ImplRepo/scale/server_i.h @@ -20,7 +20,7 @@ public: int run (void); private: - int parse_args (int argc, char* argv[]); + int parse_args (int argc, ACE_TCHAR* argv[]); CORBA::ORB_var orb_; PortableServer::POA_var root_poa_; |