summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-04-27 09:41:02 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-04-27 09:41:02 +0200
commite4e6b0cf6be0691e7579e16176cc0ec9e4f09628 (patch)
treef5ee55780b57332e5467d101d69de07b9015d987
parente04261bab50a3c23e0eacf57db3aa9dfe16fad4d (diff)
downloadATCD-e4e6b0cf6be0691e7579e16176cc0ec9e4f09628.tar.gz
Revert 64bit change, triggers warning on linux
* TAO/orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp:
-rw-r--r--TAO/orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp b/TAO/orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp
index 179afa5da9f..40368f9daef 100644
--- a/TAO/orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp
+++ b/TAO/orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp
@@ -248,7 +248,7 @@ FT_EventService::report_factory(CORBA::ORB_ptr orb,
ORBSVCS_DEBUG((LM_DEBUG,"Factory connected\n"));
CORBA::String_var my_ior_string = orb->object_to_string(ec);
- size_t const len = ACE_OS::strlen(my_ior_string.in()) ;
+ int const len = ACE_OS::strlen(my_ior_string.in()) ;
if (stream.send_n(my_ior_string.in(), len) != len)
ORBSVCS_ERROR_RETURN((LM_ERROR, "(%P|%t) IOR Transmission Error\n"), -1);