Change type conversion method
This commit is contained in:
parent
d9d8507c8f
commit
6a4d2b3368
1 changed files with 1 additions and 2 deletions
|
@ -11,7 +11,6 @@ import (
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
"unsafe"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -132,7 +131,7 @@ func NewRuleSetProvider(name string, behavior P.RuleType, interval time.Duration
|
||||||
}
|
}
|
||||||
|
|
||||||
if rp.behavior == P.Classical {
|
if rp.behavior == P.Classical {
|
||||||
rp.count = len(*(*[]C.Rule)(unsafe.Pointer(&rules)))
|
rp.count = len(rules.([]C.Rule))
|
||||||
} else {
|
} else {
|
||||||
rp.count = len(rulesRaw)
|
rp.count = len(rulesRaw)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue