Skip to content

Commit c37d70a

Browse files
committed
clang-format
1 parent 5ce1fa7 commit c37d70a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/network_interfaces/Wippersnapper_AIRLIFT.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class Wippersnapper_AIRLIFT : public Wippersnapper {
162162
/********************************************************/
163163
void setupMQTTClient(const char *clientID) {
164164
if (WS._mqttBrokerURL == nullptr)
165-
WS._mqttBrokerURL = "io.adafruit.com";
165+
WS._mqttBrokerURL = "io.adafruit.com";
166166

167167
WS._mqtt =
168168
new Adafruit_MQTT_Client(_mqtt_client, WS._mqttBrokerURL, WS._mqtt_port,

src/network_interfaces/Wippersnapper_ESP32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class Wippersnapper_ESP32 : public Wippersnapper {
101101
/********************************************************/
102102
void setupMQTTClient(const char *clientID) {
103103
if (WS._mqttBrokerURL == nullptr) {
104-
WS._mqttBrokerURL = "io.adafruit.com";
104+
WS._mqttBrokerURL = "io.adafruit.com";
105105
_mqtt_client->setCACert(_aio_root_ca_prod);
106106
} else {
107107
_mqtt_client->setCACert(_aio_root_ca_staging);

src/network_interfaces/Wippersnapper_ESP8266.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class Wippersnapper_ESP8266 : public Wippersnapper {
108108
/*******************************************************************/
109109
void setupMQTTClient(const char *clientID) {
110110
if (WS._mqttBrokerURL == nullptr)
111-
WS._mqttBrokerURL = "io.adafruit.com";
111+
WS._mqttBrokerURL = "io.adafruit.com";
112112
WS._mqtt =
113113
new Adafruit_MQTT_Client(_mqtt_client, WS._mqttBrokerURL, WS._mqtt_port,
114114
clientID, WS._username, WS._key);

0 commit comments

Comments
 (0)