summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-21 03:37:30 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-21 03:37:30 +0000
commit28a04df7bb3dbafaf9541bddbed5c562fa336536 (patch)
tree8ae7685c26974f4750b1e62d816efcccf1c06ae3
parent72565402d9d0662a2fbef2e30f76b7a6621eefef (diff)
fixed indentation.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--numeric.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/numeric.c b/numeric.c
index 37c58431f9..06351eca31 100644
--- a/numeric.c
+++ b/numeric.c
@@ -2390,7 +2390,7 @@ fix_pow(VALUE x, VALUE y)
long b = FIX2LONG(y);
if (b < 0)
- return rb_funcall(rb_rational_raw1(x), rb_intern("**"), 1, y);
+ return rb_funcall(rb_rational_raw1(x), rb_intern("**"), 1, y);
if (b == 0) return INT2FIX(1);
if (b == 1) return x;
@@ -2411,7 +2411,7 @@ fix_pow(VALUE x, VALUE y)
case T_BIGNUM:
if (rb_funcall(y, '<', 1, INT2FIX(0)))
- return rb_funcall(rb_rational_raw1(x), rb_intern("**"), 1, y);
+ return rb_funcall(rb_rational_raw1(x), rb_intern("**"), 1, y);
if (a == 0) return INT2FIX(0);
if (a == 1) return INT2FIX(1);