mirror of https://github.com/ledisdb/ledisdb.git
parseint bitsize is 8
This commit is contained in:
parent
dfee4df618
commit
4f203e9b5d
|
@ -79,7 +79,7 @@ func StrInt8(v []byte, err error) (int8, error) {
|
|||
} else if v == nil {
|
||||
return 0, nil
|
||||
} else {
|
||||
res, err := strconv.ParseInt(String(v), 10, 32)
|
||||
res, err := strconv.ParseInt(String(v), 10, 8)
|
||||
return int8(res), err
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue