fix other add statement

This commit is contained in:
danielqsj 2019-05-07 10:52:32 +08:00
parent 142fe19f2d
commit acbe498b11

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