From 86aff92f0ba45dbeb189bc214808277512224e1c Mon Sep 17 00:00:00 2001 From: brentru Date: Tue, 18 May 2021 16:43:33 -0400 Subject: [PATCH] fixup --- Adafruit_MQTT.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Adafruit_MQTT.cpp b/Adafruit_MQTT.cpp index d9973cd..bb7f8cf 100644 --- a/Adafruit_MQTT.cpp +++ b/Adafruit_MQTT.cpp @@ -388,7 +388,7 @@ bool Adafruit_MQTT::will(const char *topic, const char *payload, uint8_t qos, return true; } -/**************************************************************************/ +/***************************************************************************/ /*! @brief Sets the connect packet's KeepAlive Interval, in seconds. This function MUST be called prior to connect(). @@ -397,7 +397,7 @@ bool Adafruit_MQTT::will(const char *topic, const char *payload, uint8_t qos, client and the MQTT broker, in seconds. @returns True if called prior to connect(), False otherwise. */ -/**************************************************************************/ +/***************************************************************************/ bool Adafruit_MQTT::setKeepAliveInterval(uint16_t keepAlive) { if (connected()) { DEBUG_PRINT(F("keepAlive defined after connection established."));