Skip to content

Commit

Permalink
no need to cast latencies now that i'm printing longs
Browse files Browse the repository at this point in the history
Signed-off-by: Gene Walters <[email protected]>
  • Loading branch information
AMZN-Gene committed Aug 15, 2023
1 parent 4a10cb2 commit 3eb8e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MPSGameLift/Code/Source/MatchmakingSystemComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ namespace MPSGameLift
AZStd::string httpLatenciesParam;
for (auto const& [region, latencyMs] : regionalLatencies)
{
httpLatenciesParam += AZStd::string::format("%s_%" PRIi64 "_", region.c_str(), aznumeric_cast<uint32_t>(latencyMs.count()));
httpLatenciesParam += AZStd::string::format("%s_%" PRIi64 "_", region.c_str(), latencyMs.count());
}

httpLatenciesParam.pop_back(); // pop the trailing underscore
Expand Down

0 comments on commit 3eb8e80

Please sign in to comment.