summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/throughput/Client.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2009-05-05 13:51:03 -0230
committerDwayne Boone <dwayne@zeroc.com>2009-05-05 13:51:03 -0230
commit9ebcbc1a8af3680fc8512e95bd0fa6a9c67de6e0 (patch)
treede928ddf15ebc8559ad5f3b8e8342a2a28f9dd8c /cpp/demo/Ice/throughput/Client.cpp
parentMinor fix to trace statement (diff)
downloadice-9ebcbc1a8af3680fc8512e95bd0fa6a9c67de6e0.tar.bz2
ice-9ebcbc1a8af3680fc8512e95bd0fa6a9c67de6e0.tar.xz
ice-9ebcbc1a8af3680fc8512e95bd0fa6a9c67de6e0.zip
Bug 1594 - some more byte sequence optimizations
Diffstat (limited to 'cpp/demo/Ice/throughput/Client.cpp')
-rw-r--r--cpp/demo/Ice/throughput/Client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/Ice/throughput/Client.cpp b/cpp/demo/Ice/throughput/Client.cpp
index 9fdd85733f1..c212a76713a 100644
--- a/cpp/demo/Ice/throughput/Client.cpp
+++ b/cpp/demo/Ice/throughput/Client.cpp
@@ -123,7 +123,7 @@ ThroughputClient::run(int argc, char* argv[])
throughput->recvStructSeq();
throughput->recvFixedSeq();
- throughput->echoByteSeq(emptyBytesBuf);
+ throughput->echoByteSeq(emptyBytes);
throughput->echoStringSeq(emptyStrings);
throughput->echoStructSeq(emptyStructs);
throughput->echoFixedSeq(emptyFixed);
@@ -279,7 +279,7 @@ ThroughputClient::run(int argc, char* argv[])
case 'e':
{
- throughput->echoByteSeq(byteSeq);
+ throughput->echoByteSeq(byteArr);
break;
}
}