Skip to content

Commit cec0779

Browse files
committed
put back things that didn't need to be put back, so fixed it
1 parent 10e18fd commit cec0779

File tree

1 file changed

+1
-1
lines changed
  • ext/bcmath/libbcmath/src

1 file changed

+1
-1
lines changed

ext/bcmath/libbcmath/src/sqrt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
bool bc_sqrt(bc_num *num, size_t scale)
4040
{
41-
bc_num local_num = *num;
41+
const bc_num local_num = *num;
4242
/* Initial checks. */
4343
if (bc_is_neg(local_num)) {
4444
/* Cannot take the square root of a negative number */

0 commit comments

Comments
 (0)