fix other add statement

k3s-v1.15.3
danielqsj 2019-05-07 10:52:32 +08:00
parent 142fe19f2d
commit acbe498b11
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ func negativeScaleInt64(base int64, scale Scale) (result int64, exact bool) {
if base > 0 {
value++
} else {
value += -1
value--
}
}
return value, !fraction