瀏覽代碼

Fix spelling

Eric Andersen 22 年之前
父節點
當前提交
980e785017
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;