From 1551ac07910995d47139598df64c1902c85942e5 Mon Sep 17 00:00:00 2001 From: Tycho Andersen Date: Tue, 10 Aug 2021 08:45:21 -0600 Subject: [PATCH] mainloop: s,sys/poll,poll I get the following warning (which then fails the build because of -Werror): In file included from mainloop.c:11: /usr/include/sys/poll.h:1:2: error: #warning redirecting incorrect #include to [-Werror=cpp] 1 | #warning redirecting incorrect #include to | ^~~~~~~ Signed-off-by: Tycho Andersen --- src/lxc/mainloop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/mainloop.c b/src/lxc/mainloop.c index c5bb5df54..6261e2cbf 100644 --- a/src/lxc/mainloop.c +++ b/src/lxc/mainloop.c @@ -8,7 +8,7 @@ #include #include #include -#include +#include #include #include -- 2.47.2