summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-16 16:06:59 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-16 16:06:59 +0000
commitb790c82cee6b421365d9a8397cbe35f2792b3c79 (patch)
tree937a6dd5ef8314862d5b455b8ebca3d95dc296f1
parent882c9a77d8ee3f0101c06d023217681a3d403051 (diff)
downloadATCD-b790c82cee6b421365d9a8397cbe35f2792b3c79.tar.gz
Fixed error in last commit.
-rw-r--r--TAO/TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp b/TAO/TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp
index c4503967d71..3d8b3c569f1 100644
--- a/TAO/TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp
@@ -110,7 +110,7 @@ be_visitor_typecode_defn::visit_type (be_type *node)
if (idl_global->opt_tc () ||
node->in_recursion ())
{
- if ((qnode = this->queue_insert (this->tc_queue_, node, this->tc_offset_)) == 0)
+ if (this->queue_insert (this->tc_queue_, node, this->tc_offset_) == 0)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_typecode_defn::"