diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-09-07 18:51:49 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-09-07 18:51:49 +0200 |
commit | 0cfa3314ee2740cd94cf7064cc79fdea7b1e0dde (patch) | |
tree | f225f3d30cd2e9dce8ed0fe08f031a3c6a7660a4 | |
parent | bc3f505efa9f4f780d21165311df34ca0e8d7e20 (diff) |
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>
-rw-r--r-- | replay/replay.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/replay/replay.go b/replay/replay.go index e5c7391..85647f5 100644 --- a/replay/replay.go +++ b/replay/replay.go @@ -26,7 +26,7 @@ const ( ) const ( - BacktrackWords = CounterBitsTotal / _WordSize + BacktrackWords = CounterBitsTotal / 8 / _WordSize ) func minUint64(a uint64, b uint64) uint64 { |