diff options
Diffstat (limited to 'TAO/tao/CDR.i')
-rw-r--r-- | TAO/tao/CDR.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/CDR.i b/TAO/tao/CDR.i index 93e0460e1bb..a5b4cfcf123 100644 --- a/TAO/tao/CDR.i +++ b/TAO/tao/CDR.i @@ -384,7 +384,7 @@ TAO_InputCDR::read_boolean (CORBA::Boolean& x) { CORBA::Octet tmp; this->read_octet (tmp); - x = tmp ? CORBA::B_TRUE : CORBA::B_FALSE; + x = tmp ? 1 : 0; return this->good_bit_; } |