1
0
mirror of https://github.com/adafruit/Adafruit_MQTT_Library.git synced 2025-07-21 18:22:06 +03:00

Missing space after // comment

This commit is contained in:
dlizotte-uwo
2021-04-04 17:07:59 -04:00
parent 4f76558624
commit 7b2061ad85

View File

@ -342,7 +342,7 @@ bool Adafruit_MQTT::publish(const char *topic, uint8_t *data, uint16_t bLen,
// we increment the packet_id_counter right after publishing so inc here too
// to match
packnum = packnum + 1 + (packnum + 1 == 0); //Skip zero
packnum = packnum + 1 + (packnum + 1 == 0); // Skip zero
if (packnum != packet_id_counter)
return false;
}