diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-04-02 01:28:59 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-04-02 01:28:59 +0000 |
commit | 2c7658451fb8e832451f758648dea584a13fd9ce (patch) | |
tree | f23c606d3785af50917c9b459070d601244c4b9b /cpp/src/IceBox/Server.cpp | |
parent | adding future ops (diff) | |
download | ice-2c7658451fb8e832451f758648dea584a13fd9ce.tar.bz2 ice-2c7658451fb8e832451f758648dea584a13fd9ce.tar.xz ice-2c7658451fb8e832451f758648dea584a13fd9ce.zip |
initial clean-up
Diffstat (limited to 'cpp/src/IceBox/Server.cpp')
-rw-r--r-- | cpp/src/IceBox/Server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceBox/Server.cpp b/cpp/src/IceBox/Server.cpp index 13c18d746df..edb4ad5d01a 100644 --- a/cpp/src/IceBox/Server.cpp +++ b/cpp/src/IceBox/Server.cpp @@ -27,9 +27,9 @@ main(int argc, char* argv[]) try { communicator = initialize(argc, argv); - ServiceManagerI* serviceManagerImpl = new ServiceManagerI(communicator); + ServiceManagerI* serviceManagerImpl = new ServiceManagerI(communicator, argc, argv); serviceManager = serviceManagerImpl; - status = serviceManagerImpl->run(argc, argv); + status = serviceManagerImpl->run(); } catch (const Exception& ex) { |