Skip to content

Commit ab78b29

Browse files
committed
more c formatting fixing
1 parent 986c1b4 commit ab78b29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Adafruit_MQTT.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ void Adafruit_MQTT::processPackets(int16_t timeout) {
510510
Adafruit_MQTT_Subscribe *Adafruit_MQTT::readSubscription(int16_t timeout) {
511511

512512
// Sync or Async subscriber with message
513-
Adafruit_MQTT_Subscribe *s=0;
513+
Adafruit_MQTT_Subscribe *s = 0;
514514

515515
// Check if are unread messages
516516
for (uint8_t i = 0; i < MAXSUBSCRIPTIONS; i++) {
@@ -524,7 +524,7 @@ Adafruit_MQTT_Subscribe *Adafruit_MQTT::readSubscription(int16_t timeout) {
524524
if (!s) {
525525
// Check if data is available to read.
526526
uint16_t len = readFullPacket(buffer, MAXBUFFERSIZE,
527-
timeout); // return one full packet
527+
timeout); // return one full packet
528528
s = handleSubscriptionPacket(len);
529529
}
530530

0 commit comments

Comments
 (0)