Skip to content
Snippets Groups Projects
Commit ee9ff167 authored by Mohamed Chibani's avatar Mohamed Chibani
Browse files

multiplexed-channel: fix compilation warning

Change-Id: I75fd27f851231f23973b3226920ebba19ab7a945
parent 1b39b4e9
Branches
Tags
No related merge requests found
...@@ -330,7 +330,7 @@ MultiplexedSocket::Impl::handleChannelPacket(uint16_t channel, std::vector<uint8 ...@@ -330,7 +330,7 @@ MultiplexedSocket::Impl::handleChannelPacket(uint16_t channel, std::vector<uint8
} }
} else if (pkt.size() != 0) { } else if (pkt.size() != 0) {
std::string p = std::string(pkt.begin(), pkt.end()); std::string p = std::string(pkt.begin(), pkt.end());
JAMI_WARN("Non existing channel: %u - %.*s - %lu", channel, p.c_str(), pkt.size()); JAMI_WARN("Non existing channel: %u - %.*s", channel, (int) pkt.size(), p.c_str());
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment