Skip to content

Commit f537c27

Browse files
committed
Merge pull request locutusjs#92 from nathanntg/master
I found an issue in the bcmath component and tracked down the scale issue
2 parents 629cf1c + a80c4a2 commit f537c27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

functions/_phpjs_shared/_phpjs_shared_bc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -931,9 +931,9 @@ function _phpjs_shared_bc () {
931931
borrow = 1;
932932
} else {
933933
borrow = 0;
934-
diff.n_value[diffptr--] = val;
935-
//*diffptr-- = val;
936934
}
935+
diff.n_value[diffptr--] = val;
936+
//*diffptr-- = val;
937937
}
938938
}
939939

0 commit comments

Comments
 (0)