From b516046d8e610e37186023fed109c05d51650a2e Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 13 Sep 2009 04:15:06 +0000 Subject: * bignum.c (bigmul1_single): suppress a warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24890 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index 23d0ecfad4..bb1051243b 100644 --- a/bignum.c +++ b/bignum.c @@ -1758,7 +1758,7 @@ bigmul1_single(VALUE x, VALUE y) n = (BDIGIT_DBL)xds[0] * yds[0]; zds[0] = BIGLO(n); - zds[1] = BIGDN(n); + zds[1] = (BDIGIT)BIGDN(n); return z; } -- cgit v1.2.3