diff options
Diffstat (limited to 'cpp/demo/IceGrid/simple/Client.cpp')
-rw-r--r-- | cpp/demo/IceGrid/simple/Client.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/demo/IceGrid/simple/Client.cpp b/cpp/demo/IceGrid/simple/Client.cpp index d154ee888e8..a030d7f269b 100644 --- a/cpp/demo/IceGrid/simple/Client.cpp +++ b/cpp/demo/IceGrid/simple/Client.cpp @@ -54,8 +54,8 @@ HelloClient::run(int argc, char* argv[]) // // First we try to connect to the object with the `hello' - // identity. If it's not registered with the registry, we seach - // for an object with the ::Demo::Hello type. + // identity. If it's not registered with the registry, we + // search for an object with the ::Demo::Hello type. // Ice::ObjectPrx base = communicator()->stringToProxy(properties->getPropertyWithDefault("Identity", "hello")); HelloPrx twoway; @@ -70,7 +70,7 @@ HelloClient::run(int argc, char* argv[]) } if(!twoway) { - cerr << argv[0] << ": couldn't find a `::Demo::Hello' object" << endl; + cerr << argv[0] << ": couldn't find a `::Demo::Hello' object." << endl; return EXIT_FAILURE; } |