Skip to content

Commit

Permalink
Fixing 32-bit vs 64-bit size() log format issue (#35432)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgregorr-amazon authored Sep 5, 2024
1 parent 2bdbc76 commit 7219ad2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ void EndpointListLoader::Complete()
EndpointAttributes endpointAttributes = mEndpointAttributesList[i];
std::shared_ptr<Endpoint> endpoint =
std::make_shared<Endpoint>(CastingPlayer::GetTargetCastingPlayer(), endpointAttributes);
ChipLogProgress(AppServer, "EndpointListLoader::Complete() mEndpointServerLists[i].size: %lu ",
mEndpointServerLists[i].size());
ChipLogProgress(AppServer, "EndpointListLoader::Complete() mEndpointServerLists[i].size: %lu",
static_cast<unsigned long>(mEndpointServerLists[i].size()));
endpoint->RegisterClusters(mEndpointServerLists[i]);
CastingPlayer::GetTargetCastingPlayer()->RegisterEndpoint(endpoint);
}
Expand Down

0 comments on commit 7219ad2

Please sign in to comment.