From aae46ae5d2062ee52e3101aec723c8acf2ab0a14 Mon Sep 17 00:00:00 2001 From: Thomas Dallmair Date: Sat, 28 Dec 2024 13:11:29 +0100 Subject: [PATCH] Fix warning "redirecting incorrect #include to " This warning occurs on Alpine with musl: ``` In file included from usb.cpp:22: /usr/include/sys/poll.h:1:2: warning: #warning redirecting incorrect #include to [-Wcpp] 1 | #warning redirecting incorrect #include to | ^~~~~~~ ``` --- src/usb/usb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usb/usb.cpp b/src/usb/usb.cpp index 5a1fbe9d..feaef78a 100644 --- a/src/usb/usb.cpp +++ b/src/usb/usb.cpp @@ -19,7 +19,7 @@ #include #include -#include +#include #include "usb.h" #include "types.h"