From e7fdfefd5ca1b23f4396230c9f34e5fa59825093 Mon Sep 17 00:00:00 2001 From: svn Date: Sat, 20 Oct 2018 02:49:23 +0000 Subject: [PATCH] * expand tabs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65191 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- complex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/complex.c b/complex.c index 8a60a4fb4b..a6e2de60ed 100644 --- a/complex.c +++ b/complex.c @@ -903,7 +903,7 @@ rb_complex_pow(VALUE self, VALUE other) if (FIXNUM_P(other)) { long n = FIX2LONG(other); if (n == 0) { - return nucomp_s_new_internal(CLASS_OF(self), ONE, ZERO); + return nucomp_s_new_internal(CLASS_OF(self), ONE, ZERO); } if (n < 0) { self = f_reciprocal(self); @@ -938,7 +938,7 @@ rb_complex_pow(VALUE self, VALUE other) comp_mul(zr, zi, xr, xi, &zr, &zi); } } - return nucomp_s_new_internal(CLASS_OF(self), zr, zi); + return nucomp_s_new_internal(CLASS_OF(self), zr, zi); } } if (k_numeric_p(other) && f_real_p(other)) {