Ver código fonte

Fix spelling

Eric Andersen 22 anos atrás
pai
commit
980e785017
1 arquivos alterados com 1 adições e 1 exclusões
  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;