summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/tao/TransportCurrent/Current_Impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/TransportCurrent/Current_Impl.cpp b/TAO/tao/TransportCurrent/Current_Impl.cpp
index f3c01e64087..850ce1d621f 100644
--- a/TAO/tao/TransportCurrent/Current_Impl.cpp
+++ b/TAO/tao/TransportCurrent/Current_Impl.cpp
@@ -65,7 +65,7 @@ namespace TAO
{
const TAO_Transport* t = this->transport ();
- return (t==0) ? 0 : t->id ();
+ return (t==0) ? 0 : static_cast<CORBA::Long> (t->id ());
}
CounterT Current_Impl::bytes_sent (void)