[vlc-commits] vlccore: fix a warning on OS/2
    KO Myung-Hun 
    git at videolan.org
       
    Sat Mar  2 19:13:16 CET 2013
    
    
  
vlc | branch: master | KO Myung-Hun <komh78 at gmail.com> | 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 <remi at remlab.net>
> 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
    
    
More information about the vlc-commits
mailing list