fix(pkg): fix type issue for rps*
constants in perfdata
This commit is contained in:
parent
1a35167eab
commit
7c8c624b17
1 changed files with 6 additions and 6 deletions
|
@ -70,7 +70,7 @@ func (r *Range) String() string {
|
||||||
type rangeParserState int
|
type rangeParserState int
|
||||||
|
|
||||||
const (
|
const (
|
||||||
rpsInit = iota // Initial state
|
rpsInit rangeParserState = iota // Initial state
|
||||||
rpsExpectStart // Expect the start of the range
|
rpsExpectStart // Expect the start of the range
|
||||||
rpsInStart // Reading the start of the range
|
rpsInStart // Reading the start of the range
|
||||||
rpsExpectColon // Expect the colon that separates the start and end
|
rpsExpectColon // Expect the colon that separates the start and end
|
||||||
|
|
Loading…
Reference in a new issue