From: Jörg Krause Date: Thu, 28 May 2015 07:54:46 +0000 (+0200) Subject: Fix redirection of incorrect system headers X-Git-Tag: 2.2.4~2^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F78%2Fhead;p=thirdparty%2Fshairport-sync.git Fix redirection of incorrect system headers The POSIX correct header include is `` [1] and `` The glibc silently redirects these incorrect includes, musl libc prints a warning: #warning redirecting incorrect #include to #warning redirecting incorrect #include to [1] http://pubs.opengroup.org/onlinepubs/7908799/xsh/poll.h.html [2] http://pubs.opengroup.org/onlinepubs/7908799/xsh/signal.h.html --- diff --git a/player.c b/player.c index 561c3f22..3b28eee2 100644 --- a/player.c +++ b/player.c @@ -36,7 +36,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/rtsp.c b/rtsp.c index 91e0728e..379662a2 100644 --- a/rtsp.c +++ b/rtsp.c @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include "config.h"