aboutsummaryrefslogtreecommitdiffstats
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
commit6010d756c0df8c8f0fc24174bbb2960632068bd1 (patch)
tree97b39fd38acad9a6a3f34e2c53446d2151444d39
parent7ab3f98604a05d12d0323414db008b3938981e08 (diff)
downloadruby-6010d756c0df8c8f0fc24174bbb2960632068bd1.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
-rw-r--r--complex.c6
-rw-r--r--rational.c2
2 files changed, 4 insertions, 4 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));
}
/*
diff --git a/rational.c b/rational.c
index 69a8074e1b..a946739696 100644
--- a/rational.c
+++ b/rational.c
@@ -45,7 +45,7 @@ static ID id_abs, id_idiv, id_integer_p,
inline static VALUE \
f_##n(VALUE x, VALUE y)\
{\
- return rb_funcall(x, (op), 1, y);\
+ return rb_funcall(x, (op), 1, y); \
}
#define fun1(n) \