replay: divide by bits-per-byte

Bits / Bytes-per-Word misses the step of also dividing by Bits-per-Byte,
which we need in order for this to make sense.

Reported-by: Riobard Zhan <me@riobard.com>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2020-09-07 18:51:49 +02:00
parent bc3f505efa
commit 0cfa3314ee
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ const (
)
const (
BacktrackWords = CounterBitsTotal / _WordSize
BacktrackWords = CounterBitsTotal / 8 / _WordSize
)
func minUint64(a uint64, b uint64) uint64 {