diff options
Diffstat (limited to 'TAO/tests/CSD_Strategy_Tests/TP_Common/TestAppBase.cpp')
-rw-r--r-- | TAO/tests/CSD_Strategy_Tests/TP_Common/TestAppBase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/CSD_Strategy_Tests/TP_Common/TestAppBase.cpp b/TAO/tests/CSD_Strategy_Tests/TP_Common/TestAppBase.cpp index 118fab9b70f..8f264fbb111 100644 --- a/TAO/tests/CSD_Strategy_Tests/TP_Common/TestAppBase.cpp +++ b/TAO/tests/CSD_Strategy_Tests/TP_Common/TestAppBase.cpp @@ -20,9 +20,9 @@ TestAppBase::name() const int -TestAppBase::run(int argc, char* argv[] ACE_ENV_ARG_DECL) +TestAppBase::run(int argc, char* argv[]) { - int rc = this->run_i(argc, argv ACE_ENV_ARG_PARAMETER); + int rc = this->run_i(argc, argv); // Convert 1 to 0. Leave 0 and -1 as they are. return (rc == 1) ? 0 : rc; |