Fix compilation problem

This commit is contained in:
hsaturn
2021-03-31 00:33:15 +02:00
parent 7af4c2ca69
commit 3a1af655d7

View File

@@ -158,8 +158,8 @@ class MqttClient
void dump()
{
uint32_t ms=millis();
Serial << "MqttClient (" << clientId.c_str() << ") p=" << (uint64_t) parent
<< " c=" << (uint64_t)client << (connected() ? " ON " : " OFF");
Serial << "MqttClient (" << clientId.c_str() << ") p=" << (uint32_t) parent
<< " c=" << (uint32_t)client << (connected() ? " ON " : " OFF");
Serial << ", alive=" << (uint32_t)alive << '/' << ms << ", ka=" << keep_alive;
Serial << (client && client->connected() ? "" : "dis") << "connected";
message.hexdump("entrant msg");