mirror of https://github.com/mpv-player/mpv
stream: fix clang warning
Good clang catches programming errors. `open(2)` takes `int` not `mode_t`.
This commit is contained in:
parent
20d1fc132e
commit
e4f35516fb
|
@ -101,7 +101,7 @@ static int open_f(stream_t *stream, int mode)
|
|||
};
|
||||
stream->priv = priv;
|
||||
|
||||
mode_t m = O_CLOEXEC;
|
||||
int m = O_CLOEXEC;
|
||||
if (mode == STREAM_READ)
|
||||
m |= O_RDONLY;
|
||||
else if (mode == STREAM_WRITE)
|
||||
|
|
Loading…
Reference in New Issue