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:
parent
df3ae4e2b5
commit
b516046d8e
1 changed files with 1 additions and 1 deletions
2
bignum.c
2
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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue