Skip to content

Commit b57b6ee

Browse files
fixed short to int
1 parent 28ace4e commit b57b6ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/bcmath/libbcmath/src/recmul.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#else
4646
# define BC_MUL_UINT_DIGITS 4
4747
# define BC_MUL_UINT_OVERFLOW (BC_UINT_T) 10000
48-
# define BC_MUL_MAX_ADD_COUNT (USHRT_MAX / (BC_MUL_UINT_OVERFLOW * BC_MUL_UINT_OVERFLOW))
48+
# define BC_MUL_MAX_ADD_COUNT (UINT_MAX / (BC_MUL_UINT_OVERFLOW * BC_MUL_UINT_OVERFLOW))
4949
#endif
5050

5151

0 commit comments

Comments
 (0)