diff options
Diffstat (limited to 'cpp/test/Ice/background/Client.cpp')
-rw-r--r-- | cpp/test/Ice/background/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/background/Client.cpp b/cpp/test/Ice/background/Client.cpp index 699605bd494..12dc63fb095 100644 --- a/cpp/test/Ice/background/Client.cpp +++ b/cpp/test/Ice/background/Client.cpp @@ -18,8 +18,8 @@ using namespace Test; int run(int, char**, const Ice::CommunicatorPtr& communicator) { - BackgroundPrx allTests(const Ice::CommunicatorPtr&); - BackgroundPrx background = allTests(communicator); + BackgroundPrxPtr allTests(const Ice::CommunicatorPtr&); + BackgroundPrxPtr background = allTests(communicator); background->shutdown(); return EXIT_SUCCESS; } |