simplify x = x <op> ... to x <op>= ...

This commit is contained in:
ludweeg 2018-10-06 01:58:59 +03:00
parent 91b0f15046
commit 8ff3bf8ca6
2 changed files with 2 additions and 2 deletions

View file

@ -633,7 +633,7 @@ func (h *sentPacketHandler) computeRTOTimeout() time.Duration {
}
rto = utils.MaxDuration(rto, minRTOTimeout)
// Exponential backoff
rto = rto << h.rtoCount
rto <<= h.rtoCount
return utils.MinDuration(rto, maxRTOTimeout)
}