summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-04 19:59:34 +0000
committercleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-04 19:59:34 +0000
commit04900f04165623609d42abe10344c06f78412e4e (patch)
treeda5d7b5588739f8cc36a0ea87efa931df8c650fc
parent820f49c40744de52a6d1ce3038dc9610214844ae (diff)
downloadATCD-04900f04165623609d42abe10344c06f78412e4e.tar.gz
ChangeLogTag: Thu Jan 4 19:55:35 UTC 2007 Chris Cleeland <cleeland_c@ociweb.com>
Fixed warnings in RTEMS build.
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp4
2 files changed, 9 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index ceec5e693b4..c28e4369d34 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Thu Jan 4 19:55:35 UTC 2007 Chris Cleeland <cleeland_c@ociweb.com>
+
+ * orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp (init):
+
+ Fixed conversion warnings in RTEMS build...the old .in() for a
+ _var problem.
+
Thu Jan 4 16:32:38 UTC 2007 Chris Cleeland <cleeland_c@ociweb.com>
* tests/Bug_2702_Regression/fakeserver2.pl:
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp b/TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp
index bf90caafbd2..222e4a5172d 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp
@@ -64,8 +64,8 @@ TAO_Notify_SequencePushConsumer::init (CosNotifyComm::SequencePushConsumer_ptr p
CosNotifyComm::SequencePushConsumer::_unchecked_narrow(obj.in());
ACE_TRY_CHECK;
- this->push_consumer_ = CosNotifyComm::SequencePushConsumer::_duplicate (new_push_consumer);
- this->publish_ = CosNotifyComm::NotifyPublish::_duplicate (new_push_consumer);
+ this->push_consumer_ = CosNotifyComm::SequencePushConsumer::_duplicate (new_push_consumer.in());
+ this->publish_ = CosNotifyComm::NotifyPublish::_duplicate (new_push_consumer.in());
//--cj verify dispatching ORB
if (TAO_debug_level >= 10)