From 874297f3bea7761cf05ae26540b7a9e21d4a6e1d Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 16 Apr 2004 10:01:03 +0000 Subject: Remove stray white spaces. --- cpukit/posix/src/clocksettime.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'cpukit/posix/src/clocksettime.c') diff --git a/cpukit/posix/src/clocksettime.c b/cpukit/posix/src/clocksettime.c index a9993182a8..c85e90de61 100644 --- a/cpukit/posix/src/clocksettime.c +++ b/cpukit/posix/src/clocksettime.c @@ -35,10 +35,10 @@ int clock_settime( assert( tp ); switch ( clock_id ) { - + case CLOCK_REALTIME: (void) gmtime_r( &tp->tv_sec, &split_time ); - + /* * Convert the tm structure format to that used by the TOD Handler * @@ -57,9 +57,9 @@ int clock_settime( if ( !_TOD_Validate( &tod ) ) rtems_set_errno_and_return_minus_one( EINVAL ); - + /* - * We can't use the tp->tv_sec field because it is based on + * We can't use the tp->tv_sec field because it is based on * a different EPOCH. */ @@ -68,13 +68,13 @@ int clock_settime( _TOD_Set( &tod, seconds ); _Thread_Enable_dispatch(); break; - + #ifdef _POSIX_CPUTIME case CLOCK_PROCESS_CPUTIME: return POSIX_NOT_IMPLEMENTED(); break; #endif - + #ifdef _POSIX_THREAD_CPUTIME case CLOCK_THREAD_CPUTIME: return POSIX_NOT_IMPLEMENTED(); @@ -82,7 +82,7 @@ int clock_settime( #endif default: rtems_set_errno_and_return_minus_one( EINVAL ); - + } return 0; } -- cgit v1.2.3