vlc | branch: master | KO Myung-Hun <[email protected]> | Wed Jun 10 12:27:27 2015 +0900| [1669a713b77941f106e47bb80083fe91020cb6a9] | committer: Rémi Denis-Courmont
os2: thread: fix compilation warning Signed-off-by: Rémi Denis-Courmont <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1669a713b77941f106e47bb80083fe91020cb6a9 --- src/os2/thread.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/os2/thread.c b/src/os2/thread.c index 8673405..da191ac 100644 --- a/src/os2/thread.c +++ b/src/os2/thread.c @@ -704,6 +704,9 @@ static int vlc_select( int nfds, fd_set *rdset, fd_set *wrset, fd_set *exset, /* Export vlc_poll_os2 directly regardless of EXPORTS of .def */ __declspec(dllexport) +int vlc_poll_os2( struct pollfd *fds, unsigned nfds, int timeout ); + +__declspec(dllexport) int vlc_poll_os2( struct pollfd *fds, unsigned nfds, int timeout ) { fd_set rdset, wrset, exset; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
