summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 00:27:10 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 00:27:10 +0000
commit5887ef610b39c7d78a908200c53e8423ac61482d (patch)
tree059a47c98f72e9ef0f46a19115b711d6c7d9d079
parentfccf6459503f72312f1230a0dc84a5870fb29f0d (diff)
downloadATCD-5887ef610b39c7d78a908200c53e8423ac61482d.tar.gz
retval was not right
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp b/TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp
index 661db61d067..65478cf19cd 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation/operation_ss.cpp
@@ -251,7 +251,7 @@ be_visitor_operation_ss::visit_operation (be_operation *node)
// make the upcall and assign to the return val
ctx = *this->ctx_;
- ctx.state (TAO_CodeGen::TAO_OPERATION_RETVAL_ASSIGN_SS);
+ ctx.state (TAO_CodeGen::TAO_OPERATION_RETVAL_INVOKE_CS);
visitor = tao_cg->make_visitor (&ctx);
if (!visitor || (bt->accept (visitor) == -1))
{