fix Param

This commit is contained in:
pyihe
2022-05-26 17:12:14 +08:00
parent ff1e9e3e93
commit 2ae6115531

View File

@@ -25,7 +25,7 @@ func Int64(b []byte) (v int64, err error) {
return return
} }
negative := false negative := false
if b[0] == '-' || b[1] == '+' { if b[0] == '-' || b[0] == '+' {
if b[0] == '-' { if b[0] == '-' {
negative = true negative = true
} }