summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-06 02:28:09 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-06 02:28:09 +0000
commit1293aaf1d9cd9a057039f5cce03fefc3a20f1f76 (patch)
tree3c7b8a1e2202818aefabf764d3b4f4d036174f85 /bignum.c
parent523c3d29d21d1340504858ac8fc1acd722c9a42c (diff)
bignum divmod unsigned bug
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index 5711dd8df1..17fab7bf85 100644
--- a/bignum.c
+++ b/bignum.c
@@ -721,7 +721,7 @@ bigdivmod(x, y, div, mod, modulo)
long i, j;
VALUE yy, z;
USHORT *xds, *yds, *zds, *tds;
- long t2;
+ unsigned long t2;
long num;
USHORT dd, q;