summaryrefslogtreecommitdiff
path: root/TAO/tao/Reactive_Flushing_Strategy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Reactive_Flushing_Strategy.cpp')
-rw-r--r--TAO/tao/Reactive_Flushing_Strategy.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/Reactive_Flushing_Strategy.cpp b/TAO/tao/Reactive_Flushing_Strategy.cpp
index ab76a31f168..085779f99ed 100644
--- a/TAO/tao/Reactive_Flushing_Strategy.cpp
+++ b/TAO/tao/Reactive_Flushing_Strategy.cpp
@@ -6,8 +6,8 @@
#include "tao/ORB_Core.h"
#include "tao/Queued_Message.h"
-ACE_RCSID (tao,
- Reactive_Flushing_Strategy,
+ACE_RCSID (tao,
+ Reactive_Flushing_Strategy,
"$Id$")
@@ -36,7 +36,7 @@ TAO_Reactive_Flushing_Strategy::flush_message (TAO_Transport *transport,
ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
- TAO_ORB_Core *orb_core = transport->orb_core ();
+ TAO_ORB_Core * const orb_core = transport->orb_core ();
while (!msg->all_data_sent () && result >= 0)
{
@@ -60,11 +60,11 @@ TAO_Reactive_Flushing_Strategy::flush_transport (TAO_Transport *transport)
ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
- TAO_ORB_Core *orb_core = transport->orb_core ();
+ TAO_ORB_Core * const orb_core = transport->orb_core ();
while (!transport->queue_is_empty ())
{
- int result = orb_core->run (0, 1 ACE_ENV_ARG_PARAMETER);
+ int const result = orb_core->run (0, 1 ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
if (result == -1)