summaryrefslogtreecommitdiff
path: root/pthread.h
diff options
context:
space:
mode:
authorrpj <rpj>1999-02-21 06:38:06 +0000
committerrpj <rpj>1999-02-21 06:38:06 +0000
commit1acd28b4aec86a907846e1715bc95208d6e277e6 (patch)
tree45ee712e6b50cd61d810782ec4b30eb08fd0369e /pthread.h
parent46cb13531327c59ce4e3189e1a5b1763ed248095 (diff)
Sun Feb 21 1999 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* pthread.h (PTHREAD_MUTEX_INITIALIZER): missing braces around cs element initialiser. Bring some tests up-to-date.
Diffstat (limited to 'pthread.h')
-rw-r--r--pthread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread.h b/pthread.h
index da85c5c..e17a2c6 100644
--- a/pthread.h
+++ b/pthread.h
@@ -468,7 +468,7 @@ extern "C"
/*
*
*/
-#define PTHREAD_MUTEX_INITIALIZER { 1, 1, 0, NULL }
+#define PTHREAD_MUTEX_INITIALIZER { 1, 1, 0, {NULL} }
/*