From 1293aaf1d9cd9a057039f5cce03fefc3a20f1f76 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 6 Jun 2000 02:28:09 +0000 Subject: [PATCH] bignum divmod unsigned bug git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bignum.c b/bignum.c index 5711dd8df11aae..17fab7bf856363 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;