diff options
author | Tom G. Christensen <tgc@jupiterrise.com> | 2008-04-06 09:57:49 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2008-04-06 09:57:49 +0000 |
commit | d7d7db8b40e645ae15a530348b55d2b11a7d3135 (patch) | |
tree | e8e73b63371a21b48b3b1b78c7097ce453fdd169 /gcc/gthr-posix95.h | |
parent | 27183bba6bc249ae4c73bb799c7df702e98a2467 (diff) | |
download | gcc-d7d7db8b40e645ae15a530348b55d2b11a7d3135.zip gcc-d7d7db8b40e645ae15a530348b55d2b11a7d3135.tar.gz gcc-d7d7db8b40e645ae15a530348b55d2b11a7d3135.tar.bz2 |
gthr-posix95.h (__gthread_cond_wait_recursive): Add missing &.
* gthr-posix95.h (__gthread_cond_wait_recursive): Add missing &.
From-SVN: r133955
Diffstat (limited to 'gcc/gthr-posix95.h')
-rw-r--r-- | gcc/gthr-posix95.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gthr-posix95.h b/gcc/gthr-posix95.h index 625f799..b633281 100644 --- a/gcc/gthr-posix95.h +++ b/gcc/gthr-posix95.h @@ -750,7 +750,7 @@ static inline int __gthread_cond_wait_recursive (__gthread_cond_t *cond, __gthread_recursive_mutex_t *mutex) { - return __gthrw_(pthread_cond_wait) (cond, mutex->actual); + return __gthrw_(pthread_cond_wait) (cond, &mutex->actual); } #endif /* _LIBOBJC */ |