diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2010-10-28 08:02:41 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2010-10-28 08:02:41 +0000 |
commit | 66873d2675006fdcb171f96159bb8761c9c03696 (patch) | |
tree | 03207d08aff1fad7911e93d7800775978ac72c57 /TAO/tao/Utils | |
parent | 74bba0b977c3a2c100ca4a64f28adb8fce6b0730 (diff) | |
download | ATCD-66873d2675006fdcb171f96159bb8761c9c03696.tar.gz |
Thu Oct 28 07:57:33 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Utils/Server_Main.h:
* tao/Utils/Server_Main.cpp:
Fixed compile errors
Diffstat (limited to 'TAO/tao/Utils')
-rw-r--r-- | TAO/tao/Utils/Server_Main.cpp | 2 | ||||
-rw-r--r-- | TAO/tao/Utils/Server_Main.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Utils/Server_Main.cpp b/TAO/tao/Utils/Server_Main.cpp index e2387d9d2eb..aa7e4890288 100644 --- a/TAO/tao/Utils/Server_Main.cpp +++ b/TAO/tao/Utils/Server_Main.cpp @@ -55,7 +55,7 @@ TAO::Utils::Server_Main<SERVANT>::run (int argc, ACE_TCHAR *argv[]) // create an instance of the servant object and give it a // chance at the arguments. SERVANT servant; - result = servant.parse_args (argc, asciiArgv); + result = servant.parse_args (argc, argv); if (result == 0) { ////////////////////////////////// diff --git a/TAO/tao/Utils/Server_Main.h b/TAO/tao/Utils/Server_Main.h index fd563ecb9c8..9edfd7904a0 100644 --- a/TAO/tao/Utils/Server_Main.h +++ b/TAO/tao/Utils/Server_Main.h @@ -34,7 +34,7 @@ * the following methods: * Xyzzy_i (); // null constructor * ~Xyzzy_i (); // destructor - * int parse_args (int argc, char * argv[]); + * int parse_args (int argc, ACE_TCHAR * argv[]); * int init (CORBA::ORB_ptr orb ); * int idle(int &result); * int fini (void); |