summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/ualarm.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/posix/src/ualarm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/posix/src/ualarm.c b/cpukit/posix/src/ualarm.c
index 8910dac217..6b07ff4f31 100644
--- a/cpukit/posix/src/ualarm.c
+++ b/cpukit/posix/src/ualarm.c
@@ -40,10 +40,10 @@ void _POSIX_signals_Ualarm_TSR(
* It's OK, there isn't a way this should fail.
*/
(void) kill( getpid(), SIGALRM );
-
+
/*
* If the reset interval is non-zero, reschedule ourselves.
- */
+ */
_Watchdog_Reset( &_POSIX_signals_Ualarm_timer );
}
@@ -98,7 +98,7 @@ useconds_t ualarm(
tp.tv_nsec = (useconds % TOD_MICROSECONDS_PER_SECOND) * 1000;
ticks = _Timespec_To_ticks( &tp );
if ( ticks == 0 )
- ticks = 1;
+ ticks = 1;
_Watchdog_Insert_ticks( the_timer, _Timespec_To_ticks( &tp ) );
}