Skip to content

Commit

Permalink
fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gafferongames committed Sep 17, 2024
1 parent 26bc006 commit 36137d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reliable/reliable.c
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@ void reliable_endpoint_update( struct reliable_endpoint_t * endpoint, double tim
}
if ( count > 0 )
{
endpoint->jitter_stddev_vs_avg_rtt = pow( sum / (float)count, 0.5f );
endpoint->jitter_stddev_vs_avg_rtt = (float) pow( sum / (float)count, 0.5f );
}
else
{
Expand Down

0 comments on commit 36137d6

Please sign in to comment.