diff options
Diffstat (limited to 'cpp/test/Freeze/dbmap/Client.cpp')
-rw-r--r-- | cpp/test/Freeze/dbmap/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Freeze/dbmap/Client.cpp b/cpp/test/Freeze/dbmap/Client.cpp index 79b522fbcc4..f249c6cc237 100644 --- a/cpp/test/Freeze/dbmap/Client.cpp +++ b/cpp/test/Freeze/dbmap/Client.cpp @@ -42,7 +42,7 @@ public: string data(bytes.begin(), bytes.end()); istringstream is(data); Ice::StreamPtr stream = new ::IceXML::StreamI(communicator, is, false); - stream->readByte("Key", key); + key = stream->readByte("Key"); } }; @@ -70,7 +70,7 @@ public: string data(bytes.begin(), bytes.end()); istringstream is(data); Ice::StreamPtr stream = new ::IceXML::StreamI(communicator, is, false); - stream->readInt("Value", value); + value = stream->readInt("Value"); } }; |