summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/condtimedwait.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/condtimedwait.c')
-rw-r--r--cpukit/posix/src/condtimedwait.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/src/condtimedwait.c b/cpukit/posix/src/condtimedwait.c
index 6828393a89..32ce1d4a05 100644
--- a/cpukit/posix/src/condtimedwait.c
+++ b/cpukit/posix/src/condtimedwait.c
@@ -21,7 +21,7 @@
*
* 11.4.4 Waiting on a Condition, P1003.1c/Draft 10, p. 105
*/
-
+
int pthread_cond_timedwait(
pthread_cond_t *cond,
pthread_mutex_t *mutex,
@@ -48,7 +48,7 @@ int pthread_cond_timedwait(
if ( ( difference.tv_sec < 0 ) || ( ( difference.tv_sec == 0 ) &&
( difference.tv_nsec < 0 ) ) )
- already_timedout = TRUE;
+ already_timedout = TRUE;
timeout = _POSIX_Timespec_to_interval( &difference );