Skip to content

Commit

Permalink
fixed indentation.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
tadf committed Sep 21, 2008
1 parent 7256540 commit 28a04df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numeric.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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);
Expand Down

0 comments on commit 28a04df

Please sign in to comment.