Fixed build

This commit is contained in:
Alexey Milovidov 2019-07-09 05:06:26 +03:00
parent 10e4baf3f8
commit 823ef749fd

View File

@ -30,7 +30,7 @@ String PacketSender::packetToText(String payload)
uint64_t readLengthEncodedNumber(std::istringstream & ss)
{
char c;
char c{};
uint64_t buf = 0;
ss.get(c);
auto cc = static_cast<uint8_t>(c);