mirror of
https://gitee.com/johng/gf
synced 2026-06-06 16:21:40 +08:00
@ -233,7 +233,7 @@ func (t *Timer) binSearchIndex(n int64) (index int, result int) {
|
||||
mid := 0
|
||||
cmp := -2
|
||||
for min <= max {
|
||||
mid = int((min + max) / 2)
|
||||
mid = min + int((max-min)/2)
|
||||
switch {
|
||||
case t.wheels[mid].intervalMs == n:
|
||||
cmp = 0
|
||||
|
||||
Reference in New Issue
Block a user