summaryrefslogtreecommitdiff
path: root/examples/Shared_Malloc/test_position_independent_malloc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Shared_Malloc/test_position_independent_malloc.cpp')
-rw-r--r--examples/Shared_Malloc/test_position_independent_malloc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/Shared_Malloc/test_position_independent_malloc.cpp b/examples/Shared_Malloc/test_position_independent_malloc.cpp
index dc756bf6847..9d9dc308a08 100644
--- a/examples/Shared_Malloc/test_position_independent_malloc.cpp
+++ b/examples/Shared_Malloc/test_position_independent_malloc.cpp
@@ -127,8 +127,7 @@ parse_args (int argc, ACE_TCHAR *argv[])
{
case 'a':
// Override the default base address.
- base_addr = ACE_reinterpret_cast (void *,
- ACE_OS::atoi (get_opt.opt_arg ()));
+ base_addr = reinterpret_cast<void *> (ACE_OS::atoi (get_opt.opt_arg ()));
break;
case 'T':
#if defined (ACE_HAS_TRACE)