mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
better variable name
This commit is contained in:
parent
c8016759c1
commit
d119b0a350
1 changed files with 2 additions and 2 deletions
|
@ -222,8 +222,8 @@ func calcFlagsI(re *Regexp) (must, cant printFlags) {
|
|||
|
||||
// if last range dominates the whole range,
|
||||
// do a fast check
|
||||
fastIn := max(0, maxRange-re.Rune[len(re.Rune)-2])
|
||||
if fastIn > rune(outside)+re.Rune[len(re.Rune)-2] {
|
||||
lastRange := max(0, maxRange-re.Rune[len(re.Rune)-2])
|
||||
if lastRange > rune(outside)+re.Rune[len(re.Rune)-2] {
|
||||
checkInRange = false
|
||||
goto check
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue