Commit d7d7db8b by Tom G. Christensen Committed by Eric Botcazou

gthr-posix95.h (__gthread_cond_wait_recursive): Add missing &.

	* gthr-posix95.h (__gthread_cond_wait_recursive): Add missing &.

From-SVN: r133955
parent 27183bba
2008-04-06 Tom G. Christensen <tgc@jupiterrise.com>
* gthr-posix95.h (__gthread_cond_wait_recursive): Add missing &.
2008-04-05 Uros Bizjak <ubizjak@gmail.com>
PR target/12329
......
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment