From 7c68fabb7882439c084429ed3b089c8669b15509 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Mon, 23 May 2005 06:42:19 +0000 Subject: gthr-posix.h (__gthread_recursive_mutex_init_function): Add missing return statement. gcc/ 2005-05-23 Jan Beulich * gthr-posix.h (__gthread_recursive_mutex_init_function): Add missing return statement. From-SVN: r100075 --- gcc/gthr-posix.h | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/gthr-posix.h') diff --git a/gcc/gthr-posix.h b/gcc/gthr-posix.h index 9b56b5a..938b4f1 100644 --- a/gcc/gthr-posix.h +++ b/gcc/gthr-posix.h @@ -548,6 +548,7 @@ __gthread_recursive_mutex_init_function (__gthread_recursive_mutex_t *mutex) r = pthread_mutexattr_destroy (&attr); return r; } + return 0; } #endif -- cgit v1.1