Browse Source

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>
tags/n4.2
Carl Eugen Hoyos 6 years ago
parent
commit
06f65a17a3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/rtpproto.c

+ 1
- 1
libavformat/rtpproto.c 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 {


Loading…
Cancel
Save