1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* bignum.c (bigmul1_single): suppress a warning.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24890 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-09-13 04:15:06 +00:00
parent df3ae4e2b5
commit b516046d8e

View file

@ -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;
}