diff options
author | jbeulich <jbeulich@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-23 06:42:19 +0000 |
---|---|---|
committer | jbeulich <jbeulich@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-23 06:42:19 +0000 |
commit | fa7d6e96718c48fffc2bb759c106e24f428548ff (patch) | |
tree | a15b5509bf0d3f77dc82b98753621dc1054fc751 /gcc/gthr-posix.h | |
parent | 5bfb5e9473688ce54d47f04776124bfdc04ec385 (diff) | |
download | gcc-fa7d6e96718c48fffc2bb759c106e24f428548ff.tar.gz |
gcc/
2005-05-23 Jan Beulich <jbeulich@novell.com>
* gthr-posix.h (__gthread_recursive_mutex_init_function): Add
missing return statement.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100075 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gthr-posix.h')
-rw-r--r-- | gcc/gthr-posix.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/gthr-posix.h b/gcc/gthr-posix.h index 9b56b5aec51..938b4f15dd9 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 |