summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-01-14 18:21:15 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-01-16 00:09:21 +0100
commit06f65a17a38a462cee0c7c252b2d679e905c6de7 (patch)
tree5eae7623fd01efa60deb03a721edca68f79afc6c
parent95a27a8846ce02903c1c4554b090ccbc783adc89 (diff)
lavf/rtpproto: Use the correct patch when including poll.h
Fixes a warning using musl: In file included from libavformat/rtpproto.c:43:0: /usr/local/musl/include/sys/poll.h:1:2: warning: #warning redirecting incorrect #include <sys/poll.h> to <poll.h>
-rw-r--r--libavformat/rtpproto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c
index e706300a77..1f0a82ac7e 100644
--- a/libavformat/rtpproto.c
+++ b/libavformat/rtpproto.c
@@ -40,7 +40,7 @@
#include "os_support.h"
#include <fcntl.h>
#if HAVE_POLL_H
-#include <sys/poll.h>
+#include <poll.h>
#endif
typedef struct RTPContext {