summaryrefslogtreecommitdiff
path: root/linuxthreads/condvar.c
diff options
context:
space:
mode:
Diffstat (limited to 'linuxthreads/condvar.c')
-rw-r--r--linuxthreads/condvar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/condvar.c b/linuxthreads/condvar.c
index a27b093e05..672ccb1294 100644
--- a/linuxthreads/condvar.c
+++ b/linuxthreads/condvar.c
@@ -115,7 +115,7 @@ pthread_cond_timedwait_relative(pthread_cond_t *cond,
pthread_exit(PTHREAD_CANCELED);
}
/* If not signaled: also remove ourselves and return an error code, but
- only if the timeout has elapsed. If not, jsut continue waiting. */
+ only if the timeout has elapsed. If not, just continue waiting. */
if (THREAD_GETMEM(self, p_signal) == 0) {
if (retsleep != 0)
goto continue_waiting;