summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp b/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
index 202e68e3b88..46067b42acd 100644
--- a/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
@@ -24,7 +24,7 @@ TAO_LogMgr_i::list_logs (ACE_ENV_SINGLE_ARG_DECL)
DsLogAdmin::LogList* list;
// Figure out the length of the list.
- CORBA::ULong len = ACE_static_cast (CORBA::ULong, hash_map_.current_size ());
+ CORBA::ULong len = static_cast<CORBA::ULong>(hash_map_.current_size ());
// Allocate the list of <len> length.
ACE_NEW_THROW_EX (list,
@@ -90,7 +90,7 @@ TAO_LogMgr_i::list_logs_by_id (ACE_ENV_SINGLE_ARG_DECL)
DsLogAdmin::LogIdList* list;
// Figure out the length of the list.
- CORBA::ULong len = ACE_static_cast (CORBA::ULong, hash_map_.current_size ());
+ CORBA::ULong len = static_cast<CORBA::ULong>(hash_map_.current_size ());
// Allocate the list of <len> length.
ACE_NEW_THROW_EX (list,