summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/timercancel.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/src/timercancel.c')
-rw-r--r--cpukit/rtems/src/timercancel.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/rtems/src/timercancel.c b/cpukit/rtems/src/timercancel.c
index a8ce1478da..1e737a25bb 100644
--- a/cpukit/rtems/src/timercancel.c
+++ b/cpukit/rtems/src/timercancel.c
@@ -45,8 +45,7 @@ rtems_status_code rtems_timer_cancel(
switch ( location ) {
case OBJECTS_LOCAL:
- if ( !_Timer_Is_dormant_class( the_timer->the_class ) )
- (void) _Watchdog_Remove( &the_timer->Ticker );
+ _Timer_Cancel( the_timer );
_Objects_Put( &the_timer->Object );
return RTEMS_SUCCESSFUL;