From 735c62ce43b9438d0c6fe5b5068e036d45666d3f Mon Sep 17 00:00:00 2001 From: ru Date: Thu, 20 Mar 2008 11:47:08 +0000 Subject: pthread_mutexattr_destroy() was accidentally broken in last revision, unbreak it. We should really start compiling this with warnings. --- lib/libthr/thread/thr_mutexattr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/libthr') diff --git a/lib/libthr/thread/thr_mutexattr.c b/lib/libthr/thread/thr_mutexattr.c index 9013c82..7c48ed22 100644 --- a/lib/libthr/thread/thr_mutexattr.c +++ b/lib/libthr/thread/thr_mutexattr.c @@ -166,6 +166,7 @@ _pthread_mutexattr_destroy(pthread_mutexattr_t *attr) *attr = NULL; ret = 0; } + return(ret); } int -- cgit v1.1