Skip to content

Commit

Permalink
Remove Unnecessary Unit Conversion (#4543)
Browse files Browse the repository at this point in the history
  • Loading branch information
nibanks committed Sep 10, 2024
1 parent 44f096a commit 733da8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/bbr.c
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ BbrCongestionControlGetSendAllowance(
!TimeSinceLastSendValid ||
!Connection->Settings.PacingEnabled ||
Bbr->MinRtt == UINT32_MAX ||
Bbr->MinRtt < MS_TO_US(QUIC_SEND_PACING_INTERVAL)) {
Bbr->MinRtt < QUIC_SEND_PACING_INTERVAL) {
//
// We're not in the necessary state to pace.
//
Expand Down

0 comments on commit 733da8d

Please sign in to comment.