From 0e7c76f20efc2642f5e862458414f39f1d61e7be 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: http://svn.ruby-lang.org/repos/ruby/trunk@24890 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bignum.c b/bignum.c index 23d0ecfad..bb1051243 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