Skip to content
Snippets Groups Projects
Commit 49b07196 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

ice: fix format issue

Change-Id: I0cfedfa1ef932585a108d3ea0c558e3277b59e81
parent c5b971d6
Branches
No related tags found
No related merge requests found
...@@ -1317,7 +1317,7 @@ IceTransport::startIce(const SDP& sdp) ...@@ -1317,7 +1317,7 @@ IceTransport::startIce(const SDP& sdp)
{ {
if (pimpl_->streamsCount_ != 1) { if (pimpl_->streamsCount_ != 1) {
if (pimpl_->logger_) if (pimpl_->logger_)
pimpl_->logger_->error(FMT_STRING("Expected exactly one stream per SDP (found {:u} streams)"), pimpl_->streamsCount_); pimpl_->logger_->error(FMT_STRING("Expected exactly one stream per SDP (found {:d} streams)"), pimpl_->streamsCount_);
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment