summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-10 15:16:47 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-10 15:16:47 +0000
commit2f95352cc6550c6a97be6fac8c97192c4ed4d777 (patch)
treed829edd83257aab5db9edaf6ba13a7797bded6e4 /cpukit/rtems
parent2009-10-10 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-2f95352cc6550c6a97be6fac8c97192c4ed4d777.tar.bz2
2009-10-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/timerserver.c: Indentation.
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/src/timerserver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/src/timerserver.c b/cpukit/rtems/src/timerserver.c
index 25e4ba9df3..b0de731d4e 100644
--- a/cpukit/rtems/src/timerserver.c
+++ b/cpukit/rtems/src/timerserver.c
@@ -159,9 +159,9 @@ static void _Timer_Server_process_ticks_chain(
snapshot = _Watchdog_Ticks_since_boot;
if ( snapshot >= _Timer_Server_ticks_last_time )
- ticks = snapshot - _Timer_Server_ticks_last_time;
+ ticks = snapshot - _Timer_Server_ticks_last_time;
else
- ticks = (0xFFFFFFFF - _Timer_Server_ticks_last_time) + snapshot;
+ ticks = (0xFFFFFFFF - _Timer_Server_ticks_last_time) + snapshot;
_Timer_Server_ticks_last_time = snapshot;
_Watchdog_Adjust_to_chain( &_Timer_Ticks_chain, ticks, to_fire );