[vlc-commits] threads: fix android build
Thomas Guillem
git at videolan.org
Wed May 25 10:45:10 CEST 2016
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed May 25 10:44:19 2016 +0200| [5c4c3fb4c6d7cd213595b1a35a8045ab9845bb78] | committer: Thomas Guillem
threads: fix android build
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5c4c3fb4c6d7cd213595b1a35a8045ab9845bb78
---
src/android/thread.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/android/thread.c b/src/android/thread.c
index d7356cc..e016e90 100644
--- a/src/android/thread.c
+++ b/src/android/thread.c
@@ -287,7 +287,7 @@ static int vlc_cond_timedwait_common(vlc_cond_t *condvar, vlc_mutex_t *mutex,
}
}
- int val = cb(condvar, p_mutex, ts);
+ int val = cb(condvar, mutex, ts);
if (val != ETIMEDOUT)
VLC_THREAD_ASSERT ("timed-waiting on condition");
More information about the vlc-commits
mailing list