From af5744c3595dee92ff9ceb1e08314123baea35e5 Mon Sep 17 00:00:00 2001 From: Guillaume Solignac Date: Tue, 10 Jan 2023 15:37:18 +0100 Subject: misc: use right include for fctnl.h and poll.h Musl is stricter than glibc and has a warning that including fctnl.h and poll.h should be prefered rather than their sys/ counterparts, which breaks -Wall setups. Type: fix Signed-off-by: Guillaume Solignac Change-Id: Id101e999371951b0927cc8c4109f8f1536de1bc2 --- src/vppinfra/mpcap.c | 2 +- src/vppinfra/pcap.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/vppinfra') diff --git a/src/vppinfra/mpcap.c b/src/vppinfra/mpcap.c index 8389a7fd2d7..d8e36c29fbd 100644 --- a/src/vppinfra/mpcap.c +++ b/src/vppinfra/mpcap.c @@ -13,7 +13,7 @@ * limitations under the License. */ -#include +#include #include /* diff --git a/src/vppinfra/pcap.c b/src/vppinfra/pcap.c index 4f8b6bb429c..23bb463835b 100644 --- a/src/vppinfra/pcap.c +++ b/src/vppinfra/pcap.c @@ -37,7 +37,7 @@ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include +#include #include /** -- cgit 1.2.3-korg