aboutsummaryrefslogtreecommitdiffstats
path: root/complex.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-07 11:49:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-07 11:49:23 +0000
commit2121f2941f267e176b024796a051cd8f12fd5dfd (patch)
tree97b39fd38acad9a6a3f34e2c53446d2151444d39 /complex.c
parentec9a9316db7d1bb775333df47bb1ed23bd062c8b (diff)
downloadruby-2121f2941f267e176b024796a051cd8f12fd5dfd.tar.gz
complex.c, rational.c: adjust indent
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62686 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/complex.c b/complex.c
index 83cc041d58..5474fb1478 100644
--- a/complex.c
+++ b/complex.c
@@ -625,9 +625,9 @@ nucomp_imag(VALUE self)
static VALUE
nucomp_negate(VALUE self)
{
- get_dat1(self);
- return f_complex_new2(CLASS_OF(self),
- f_negate(dat->real), f_negate(dat->imag));
+ get_dat1(self);
+ return f_complex_new2(CLASS_OF(self),
+ f_negate(dat->real), f_negate(dat->imag));
}
/*