Browse Source

Fix spelling

Eric Andersen 22 years ago
parent
commit
980e785017
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libpthread/linuxthreads/condvar.c

+ 1 - 1
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;