Skip to content

Commit 8ecf974

Browse files
committed
typo
1 parent 8ea5dd6 commit 8ecf974

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

ext/bcmath/libbcmath/src/div.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ bool bc_divide(bc_num numerator, bc_num divisor, bc_num *quot, size_t scale)
420420
/* If divisor is 1 here, return the result of adjusting the decimal point position of numerator. */
421421
if (divisor_size == 1 && *divisorptr == 1) {
422422
bc_divide_by_pow_10(numeratorptr, numerator_readable_size, quot, quot_size, quot_scale);
423-
(*quot)->n_sign = numerator->n_sign == divisor->n_sign ? PLUS : MINUS;;
423+
(*quot)->n_sign = numerator->n_sign == divisor->n_sign ? PLUS : MINUS;
424424
return true;
425425
}
426426

0 commit comments

Comments
 (0)