From 01a2dd23ed256eeeb190bbf813232a658b28ffc7 Mon Sep 17 00:00:00 2001 From: Daniele Forsi IU5HKX Date: Sat, 18 Mar 2023 11:17:18 +0100 Subject: [PATCH] Fix cppcheck "missingInclude" informational message Fixes: tests/rigtestlibusb.c:30:0: information: Include file: "libusb.h" not found. [missingInclude] --- tests/rigtestlibusb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rigtestlibusb.c b/tests/rigtestlibusb.c index c0d3d92e5..28cb8047e 100644 --- a/tests/rigtestlibusb.c +++ b/tests/rigtestlibusb.c @@ -27,7 +27,7 @@ #include #include "config.h" #if defined(HAVE_LIBUSB_H) -#include "libusb.h" +#include #elif defined(HAVE_LIBUSB_1_0_LIBUSB_H) #include #endif