diff options
Diffstat (limited to 'cpp/demo/Ice/minimal/Client.cpp')
-rw-r--r-- | cpp/demo/Ice/minimal/Client.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/demo/Ice/minimal/Client.cpp b/cpp/demo/Ice/minimal/Client.cpp index cdc5d07205e..0c1968c30b2 100644 --- a/cpp/demo/Ice/minimal/Client.cpp +++ b/cpp/demo/Ice/minimal/Client.cpp @@ -25,9 +25,9 @@ main(int argc, char* argv[]) hello->sayHello(); communicator->destroy(); } - catch(const Ice::Exception& ex) + catch(const Ice::Exception& ex1) { - cerr << ex << endl; + cerr << ex1 << endl; try { if(communicator) @@ -35,9 +35,9 @@ main(int argc, char* argv[]) communicator->destroy(); } } - catch(const Ice::Exception& ex) + catch(const Ice::Exception& ex2) { - cerr << ex << endl; + cerr << ex2 << endl; } exit(1); } |