diff options
Diffstat (limited to 'cpp/demo/IcePack/hello/Client.cpp')
-rw-r--r-- | cpp/demo/IcePack/hello/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/IcePack/hello/Client.cpp b/cpp/demo/IcePack/hello/Client.cpp index cf19b569f17..15e1ddaa924 100644 --- a/cpp/demo/IcePack/hello/Client.cpp +++ b/cpp/demo/IcePack/hello/Client.cpp @@ -75,7 +75,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { string name; - cout << "name: " << ends; + cout << "name: "; cin >> name; if(!name.empty()) @@ -116,7 +116,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { string name; - cout << "name: " << ends; + cout << "name: "; cin >> name; try |