aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-12-10 15:15:42 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-12-10 15:15:42 +0100
commitc665c183f15f4246da3d44fba92883ef05fc98af (patch)
treea3b6bfaea9736337a93cd3b45a05d6305b74482a
parent8b4cf0dbb08a8a526045051b442e45cb2359b224 (diff)
downloadbusybox-c665c183f15f4246da3d44fba92883ef05fc98af.tar.gz
bc: 0xffffffffffffffff may be larger than unsigned long
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--miscutils/bc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c
index 71022569e..9774ac45b 100644
--- a/miscutils/bc.c
+++ b/miscutils/bc.c
@@ -1476,9 +1476,9 @@ static void bc_num_ulong2num(BcNum *n, unsigned long val)
if (ULONG_MAX == 0xffffffffUL)
bc_num_expand(n, 10); // 10 digits: 4294967295
- if (ULONG_MAX == 0xffffffffffffffffUL)
+ if (ULONG_MAX == 0xffffffffffffffffULL)
bc_num_expand(n, 20); // 20 digits: 18446744073709551615
- BUILD_BUG_ON(ULONG_MAX > 0xffffffffffffffffUL);
+ BUILD_BUG_ON(ULONG_MAX > 0xffffffffffffffffULL);
ptr = n->num;
for (;;) {