Remove spaces to end of lines

This commit is contained in:
Francois BIOT
2022-12-28 21:22:19 +01:00
parent 42fc054c94
commit 2b92833ea5
10 changed files with 44 additions and 44 deletions

View File

@@ -538,7 +538,7 @@ void MqttClient::processMessage(MqttMessage* mesg)
{
if (!mqtt_connected) break;
payload = header+2;
debug("un/subscribe loop");
std::string qoss;
while(payload < mesg->end())
@@ -862,7 +862,7 @@ void MqttMessage::encodeLength()
buffer[2] = (length >> 7);
vheader = 3;
}
// We could check that buffer[2] < 128 (end of length encoding)
state = Complete;
}