summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2011-06-11 16:21:54 +0000
committerUoti Urpala <uau@mplayer2.org>2011-07-06 09:55:33 +0300
commit1054f89404cea0f0d2ae511dc87180a00c51c9de (patch)
treecf00bde6ca326276cc24bbf119cf14290f33b746 /stream
parentb7406244482b3239342601995d77716d57cd5d71 (diff)
downloadmpv-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
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_pvr.c2
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>