We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bdbc76 commit 7219ad2Copy full SHA for 7219ad2
examples/tv-casting-app/tv-casting-common/support/EndpointListLoader.cpp
@@ -135,8 +135,8 @@ void EndpointListLoader::Complete()
135
EndpointAttributes endpointAttributes = mEndpointAttributesList[i];
136
std::shared_ptr<Endpoint> endpoint =
137
std::make_shared<Endpoint>(CastingPlayer::GetTargetCastingPlayer(), endpointAttributes);
138
- ChipLogProgress(AppServer, "EndpointListLoader::Complete() mEndpointServerLists[i].size: %lu ",
139
- mEndpointServerLists[i].size());
+ ChipLogProgress(AppServer, "EndpointListLoader::Complete() mEndpointServerLists[i].size: %lu",
+ static_cast<unsigned long>(mEndpointServerLists[i].size()));
140
endpoint->RegisterClusters(mEndpointServerLists[i]);
141
CastingPlayer::GetTargetCastingPlayer()->RegisterEndpoint(endpoint);
142
}
0 commit comments