aboutsummaryrefslogtreecommitdiff
path: root/gcc/gthr-posix95.h
diff options
context:
space:
mode:
authorTom G. Christensen <tgc@jupiterrise.com>2008-04-06 09:57:49 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2008-04-06 09:57:49 +0000
commitd7d7db8b40e645ae15a530348b55d2b11a7d3135 (patch)
treee8e73b63371a21b48b3b1b78c7097ce453fdd169 /gcc/gthr-posix95.h
parent27183bba6bc249ae4c73bb799c7df702e98a2467 (diff)
downloadgcc-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.h2
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 */