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>
This commit is contained in:
Carl Eugen Hoyos 2019-01-14 18:21:15 +01:00
parent 95a27a8846
commit 06f65a17a3
1 changed files with 1 additions and 1 deletions

View File

@ -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 {