Skip to content

Commit

Permalink
Merge pull request locutusjs#92 from nathanntg/master
Browse files Browse the repository at this point in the history
I found an issue in the bcmath component and tracked down the scale issue
  • Loading branch information
kvz committed May 10, 2013
2 parents 629cf1c + a80c4a2 commit f537c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/_phpjs_shared/_phpjs_shared_bc.js
Original file line number Diff line number Diff line change
Expand Up @@ -931,9 +931,9 @@ function _phpjs_shared_bc () {
borrow = 1;
} else {
borrow = 0;
diff.n_value[diffptr--] = val;
//*diffptr-- = val;
}
diff.n_value[diffptr--] = val;
//*diffptr-- = val;
}
}

Expand Down

0 comments on commit f537c27

Please sign in to comment.