summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 03:30:53 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 03:30:53 +0000
commitd73b431e5068f2b5a2c696dca6d84a8c394602b1 (patch)
tree87ff847b4145727e7d17f1b0a39032c40bf0cd86 /bignum.c
parent10fb4e151d4b053c1adf2363b278ec37a49497da (diff)
Rename fix_rev and rb_big_neg to fix_comp and rb_big_comp.
* bignum.c (rb_big_comp): Renamed from rb_big_neg. * numeric.c (fix_comp): Renamed from fix_rev. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54830 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index 77f44ad21a..6444deb1e8 100644
--- a/bignum.c
+++ b/bignum.c
@@ -5547,7 +5547,7 @@ rb_big_uminus(VALUE x)
}
VALUE
-rb_big_neg(VALUE x)
+rb_big_comp(VALUE x)
{
VALUE z = rb_big_clone(x);
BDIGIT *ds = BDIGITS(z);