From 6387bf1151eb5d61e4ce2fca165b013dcc5e29fc Mon Sep 17 00:00:00 2001 From: bje Date: Sat, 3 Oct 1998 03:02:28 +0000 Subject: 1998-10-03 Ben Elliston * mutex.c (pthread_mutex_init): Correct function signature. --- mutex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mutex.c') diff --git a/mutex.c b/mutex.c index d53c356..aaf4ff4 100644 --- a/mutex.c +++ b/mutex.c @@ -11,7 +11,7 @@ #include "implement.h" int -pthread_mutex_init(pthread_mutex_t *mutex, pthread_mutexattr_t *attr) +pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr) { if (mutex == NULL) { -- cgit v1.2.3