aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bignum.c b/bignum.c
index b84d854d32..2a0647e6bc 100644
--- a/bignum.c
+++ b/bignum.c
@@ -425,9 +425,9 @@ bary_small_rshift(BDIGIT *zds, const BDIGIT *xds, size_t n, int shift, BDIGIT hi
num = BIGUP(higher_bdigit);
for (i = 0; i < n; i++) {
- BDIGIT x = xds[n - i - 1];
+ BDIGIT x = xds[n - i - 1];
num = (num | x) >> shift;
- zds[n - i - 1] = BIGLO(num);
+ zds[n - i - 1] = BIGLO(num);
num = BIGUP(x);
}
}
@@ -5106,7 +5106,7 @@ big2ulong(VALUE x, const char *type)
num = 0;
for (i = 0; i < len; i++) {
num <<= BITSPERDIG;
- num += (unsigned long)ds[len - i - 1]; /* overflow is already checked */
+ num += (unsigned long)ds[len - i - 1]; /* overflow is already checked */
}
#endif
return num;