diff options
Diffstat (limited to 'cpp/test/Ice/stream/Client.cpp')
-rwxr-xr-x | cpp/test/Ice/stream/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/stream/Client.cpp b/cpp/test/Ice/stream/Client.cpp index d1bd2a4f2b5..a2434f6b0ff 100755 --- a/cpp/test/Ice/stream/Client.cpp +++ b/cpp/test/Ice/stream/Client.cpp @@ -62,10 +62,10 @@ public: } virtual void - read(const Ice::InputStreamPtr& in, bool rid) + read(const Ice::InputStreamPtr& in) { obj = new Test::MyClass; - obj->__read(in, rid); + obj->__read(in); called = true; } |