From 98d14a2fe7eff9820e6bacf1df139c9ce3514e41 Mon Sep 17 00:00:00 2001 From: "A.M. Rowsell" Date: Wed, 24 Jun 2026 12:07:47 -0400 Subject: [PATCH] chore: fixed LSP complaints about header includes --- mqtt.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mqtt.c b/mqtt.c index 3efff24..ff9c22e 100644 --- a/mqtt.c +++ b/mqtt.c @@ -1,8 +1,8 @@ #include "mqtt.h" -#include "lwip/altcp.h" +#include "lwip/altcp.h" // IWYU pragma: keep #include "lwip/altcp_tls.h" -#include "lwip/apps/mqtt_priv.h" +#include "lwip/apps/mqtt_priv.h" // IWYU pragma: keep #include "lwip/dns.h" #include "pico/cyw43_arch.h" #include @@ -121,5 +121,3 @@ err_t ensaht_mqtt_publish_client(ensaht_mqtt_t *mqtt, const char *topic, return err; } - -