Skip to content

Commit

Permalink
fix format warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sveseli committed Apr 1, 2024
1 parent 7832fc4 commit 6b19c20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/nameServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ void NameServerChannelProvider::updateChannelMap(const ChannelMap& updatedChanne
ChannelEntry channelEntry = it->second;
channelMap[channelName] = channelEntry;
}
LOG(logLevelDebug, "Name server channel provider updated %ld channels", updatedChannelMap.size());
LOG(logLevelDebug, "Name server channel provider updated %d channels", int(updatedChannelMap.size()));
}

std::string NameServerChannelProvider::getChannelServerAddress(const std::string& channelName)
Expand Down

0 comments on commit 6b19c20

Please sign in to comment.