vlc | branch: master | KO Myung-Hun <[email protected]> | Sun Mar 3 03:04:47 2013 +0900| [a9c71ebf000426acb9b62bcc2ef9fe82e5fd5164] | committer: Rémi Denis-Courmont
vlccore: fix a warning on OS/2 Signed-off-by: Rémi Denis-Courmont <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a9c71ebf000426acb9b62bcc2ef9fe82e5fd5164 --- src/os2/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os2/thread.c b/src/os2/thread.c index 10072aa..ef439b9 100644 --- a/src/os2/thread.c +++ b/src/os2/thread.c @@ -326,7 +326,7 @@ int vlc_cond_timedwait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex, if (!p_condvar->hev) { /* FIXME FIXME FIXME */ msleep (50000); - return; + return 0; } do _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
