summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authorJames Ross-Gowan <rossymiles@gmail.com>2014-11-08 17:17:43 +1100
committerwm4 <wm4@nowhere>2014-11-08 10:24:49 +0100
commitcee0d7f2ada4d09b49ad7b10689198a4d96b7712 (patch)
tree181982a1eecc34730fa9e4bd759a974e4e61fb79 /osdep
parent9f239464da067b8627c7c2bbd85af3f8fcb2f026 (diff)
downloadmpv-cee0d7f2ada4d09b49ad7b10689198a4d96b7712.tar.bz2
mpv-cee0d7f2ada4d09b49ad7b10689198a4d96b7712.tar.xz
win32: silence some warnings
Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'osdep')
-rw-r--r--osdep/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/io.c b/osdep/io.c
index 00715288a9..7c46dd47ab 100644
--- a/osdep/io.c
+++ b/osdep/io.c
@@ -65,7 +65,7 @@ int mp_make_cloexec_pipe(int pipes[2])
#ifdef __MINGW32__
int mp_make_wakeup_pipe(int pipes[2])
{
- mp_make_cloexec_pipe(pipes);
+ return mp_make_cloexec_pipe(pipes);
}
#else
// create a pipe, and set it to non-blocking (and also set FD_CLOEXEC)