summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-01-25 19:09:17 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-01-25 19:09:17 +0000
commitfaaab0244c6bdb9e41df91cf3e9669393e74aaca (patch)
tree600212efe010ca3044779d132b160038d5d2a47b /TAO/orbsvcs/orbsvcs/Log/LogMgr_i.cpp
parent767b3327161f15c6d0c9ffd446b104948451eb2f (diff)
downloadATCD-faaab0244c6bdb9e41df91cf3e9669393e74aaca.tar.gz
ChangeLogTag: Tue Jan 25 09:59:28 2005 J.T. Conklin <jtc@acorntoolworks.com>
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,