diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-03-12 16:25:00 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-03-12 16:25:00 +0000 |
commit | c9308ab523ef01a80d1da18dbc17ec8c9da8f437 (patch) | |
tree | c294988b9cc54e6c9e61f6d8d9c2ddd7255b9bff /cpp/src | |
parent | property fixes; minor cleanup (diff) | |
download | ice-c9308ab523ef01a80d1da18dbc17ec8c9da8f437.tar.bz2 ice-c9308ab523ef01a80d1da18dbc17ec8c9da8f437.tar.xz ice-c9308ab523ef01a80d1da18dbc17ec8c9da8f437.zip |
another trivial bug fix
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Slice/JavaUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Slice/JavaUtil.cpp b/cpp/src/Slice/JavaUtil.cpp index 901910fe263..17d446d7472 100644 --- a/cpp/src/Slice/JavaUtil.cpp +++ b/cpp/src/Slice/JavaUtil.cpp @@ -909,7 +909,7 @@ Slice::JavaGenerator::writeGenericMarshalUnmarshalCode(Output& out, } else { - out << nl << "v = " << stream << ".readObject(" << name << ", \"\", null);"; + out << nl << v << " = " << stream << ".readObject(" << name << ", \"\", null);"; } break; } |