diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-02-25 04:13:42 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-02-25 04:13:42 +0000 |
commit | dab7aa22f7cfc941ec6a9af7129fd7b1b31b7689 (patch) | |
tree | 77561667cffe2d251776d2217448bcacc84cd65e /bignum.c | |
parent | 982a448ead1e76d1891ff3bd1ddc7e365a0846dc (diff) |
bignum.c (bary_zero_p): constify
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57712 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r-- | bignum.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -432,7 +432,7 @@ bary_small_rshift(BDIGIT *zds, const BDIGIT *xds, size_t n, int shift, BDIGIT hi } static int -bary_zero_p(BDIGIT *xds, size_t xn) +bary_zero_p(const BDIGIT *xds, size_t xn) { if (xn == 0) return 1; |