summaryrefslogtreecommitdiff
path: root/examples/APG/Timers/CB.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Timers/CB.cpp')
-rw-r--r--examples/APG/Timers/CB.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/APG/Timers/CB.cpp b/examples/APG/Timers/CB.cpp
index 4754987660f..0a86ae7edeb 100644
--- a/examples/APG/Timers/CB.cpp
+++ b/examples/APG/Timers/CB.cpp
@@ -15,7 +15,7 @@ int CB::handle_timeout (const ACE_Time_Value &,
{
ACE_TRACE (ACE_TEXT ("CB::handle_timeout"));
- const int *val = ACE_static_cast (const int*, arg);
+ const int *val = static_cast<const int*> (arg);
ACE_ASSERT ((*val) == timerID_);
ACE_UNUSED_ARG (val);