summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-07-19 08:09:17 +0000
committerEric Andersen <andersen@codepoet.org>2002-07-19 08:09:17 +0000
commit980e7850176c30ba374a706298b2865f387ec2ae (patch)
treef54cd5227b8bea705b1167e709f59ef610704a7f /libpthread
parent3bbbba11f73ae5f1d58523cf510f3e58f0049800 (diff)
Fix spelling
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/linuxthreads/condvar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/condvar.c b/libpthread/linuxthreads/condvar.c
index 405d9bab4..8bc114e3c 100644
--- a/libpthread/linuxthreads/condvar.c
+++ b/libpthread/linuxthreads/condvar.c
@@ -427,7 +427,7 @@ int pthread_condattr_setpshared (pthread_condattr_t *attr, int pshared)
if (pshared != PTHREAD_PROCESS_PRIVATE && pshared != PTHREAD_PROCESS_SHARED)
return EINVAL;
- /* For now it is not possible to shared a conditional variable. */
+ /* For now it is not possible to share a conditional variable. */
if (pshared != PTHREAD_PROCESS_PRIVATE)
return ENOSYS;