diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2011-06-11 16:21:54 +0000 |
---|---|---|
committer | Uoti Urpala <uau@mplayer2.org> | 2011-07-06 09:55:33 +0300 |
commit | 1054f89404cea0f0d2ae511dc87180a00c51c9de (patch) | |
tree | cf00bde6ca326276cc24bbf119cf14290f33b746 | |
parent | b7406244482b3239342601995d77716d57cd5d71 (diff) | |
download | mpv-1054f89404cea0f0d2ae511dc87180a00c51c9de.tar.bz2 mpv-1054f89404cea0f0d2ae511dc87180a00c51c9de.tar.xz |
stream_pvr: Replace <sys/fcntl.h> include by <fcntl.h>
Replace sys/fcntl.h include by fcntl.h include used everywhere else.
Also fixes compilation with the Android NDK.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33584 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | stream/stream_pvr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_pvr.c b/stream/stream_pvr.c index 4048168990..745686e2e3 100644 --- a/stream/stream_pvr.c +++ b/stream/stream_pvr.c @@ -34,7 +34,7 @@ #include <sys/time.h> #include <errno.h> #include <sys/ioctl.h> -#include <sys/fcntl.h> +#include <fcntl.h> #include <inttypes.h> #include <poll.h> #include <linux/types.h> |