diff options
author | Jose <jose@zeroc.com> | 2014-05-05 17:27:28 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-05-05 17:27:28 +0200 |
commit | 1ca2ecdadb29476c2521d8cc87fe2507336b47ba (patch) | |
tree | ff1aac64fece9e7a54265a395fd06398813fb9f5 /cpp/test/Ice | |
parent | Minor fix for optimized builds (diff) | |
download | ice-1ca2ecdadb29476c2521d8cc87fe2507336b47ba.tar.bz2 ice-1ca2ecdadb29476c2521d8cc87fe2507336b47ba.tar.xz ice-1ca2ecdadb29476c2521d8cc87fe2507336b47ba.zip |
String converter test minor fix
Diffstat (limited to 'cpp/test/Ice')
-rw-r--r-- | cpp/test/Ice/stringConverter/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/stringConverter/Client.cpp b/cpp/test/Ice/stringConverter/Client.cpp index eb59598691d..5c624326a9d 100644 --- a/cpp/test/Ice/stringConverter/Client.cpp +++ b/cpp/test/Ice/stringConverter/Client.cpp @@ -94,7 +94,7 @@ int Client::run(int, char*[]) { Test::MyObjectPrx proxy = - Test::MyObjectPrx::uncheckedCast(communicator()->stringToProxy("test:default -h localhost -p 12010")); + Test::MyObjectPrx::uncheckedCast(communicator()->stringToProxy("test:default -p 12010")); char oe = char(0xBD); // A single character in ISO Latin 9 string msg = string("tu me fends le c") + oe + "ur!"; |