diff options
author | jb <jb@FreeBSD.org> | 1999-05-24 07:22:55 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1999-05-24 07:22:55 +0000 |
commit | 96b513fe016ed1f5a8e3ee6b5bef707771e987e3 (patch) | |
tree | f84be9d208f57e66174b4d23430c0cb8734a9081 /lib/libpthread/thread | |
parent | e8f9d33b76b0d86eff86945749b1b48d16f3e7c0 (diff) | |
download | FreeBSD-src-96b513fe016ed1f5a8e3ee6b5bef707771e987e3.zip FreeBSD-src-96b513fe016ed1f5a8e3ee6b5bef707771e987e3.tar.gz |
Added a missing comma to the static condition variable initialisation
definition.
Submitted by: David Leonard <David.Leonard@csee.uq.edu.au>, an OpenBSD guy.
Diffstat (limited to 'lib/libpthread/thread')
-rw-r--r-- | lib/libpthread/thread/thr_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_private.h b/lib/libpthread/thread/thr_private.h index db1c224..6cacb27 100644 --- a/lib/libpthread/thread/thr_private.h +++ b/lib/libpthread/thread/thr_private.h @@ -257,7 +257,7 @@ struct pthread_cond_attr { * Static cond initialization values. */ #define PTHREAD_COND_STATIC_INITIALIZER \ - { COND_TYPE_FAST, PTHREAD_QUEUE_INITIALIZER, NULL, NULL \ + { COND_TYPE_FAST, PTHREAD_QUEUE_INITIALIZER, NULL, NULL, \ 0, _SPINLOCK_INITIALIZER } /* |