From 4b4eb0b68421cb0b43c70d84e7fc189d7322307c Mon Sep 17 00:00:00 2001 From: hsaturn Date: Fri, 23 Dec 2022 18:06:35 +0100 Subject: [PATCH] Fix compilation error when not in debug --- src/TinyMqtt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TinyMqtt.h b/src/TinyMqtt.h index 188c6e8..c9efee2 100644 --- a/src/TinyMqtt.h +++ b/src/TinyMqtt.h @@ -37,9 +37,9 @@ #define TINY_MQTT_DEFAULT_CLIENT_ID "Tiny" -#if TINY_MQTT_DEBUG #include -#include // https://github.com/hsaturn/TinyConsole +#if TINY_MQTT_DEBUG +include // https://github.com/hsaturn/TinyConsole struct TinyMqtt { static int debug;