summaryrefslogtreecommitdiff
path: root/complex.c
diff options
context:
space:
mode:
authoryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-03 13:54:19 +0000
committeryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-03 13:54:19 +0000
commitc949686d02449481ce940956ba6cb4721ade2aa8 (patch)
tree14d845d69c70e33acd8e7de3bfd3ad5d186e08ec /complex.c
parent03cbafcf23720229282125323548c14a4e30eba1 (diff)
* complex.c (rb_complex_set_imag): Fix to properly set imag
of complex. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54896 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/complex.c b/complex.c
index 0d4073018d..ef3c01d0f8 100644
--- a/complex.c
+++ b/complex.c
@@ -1411,7 +1411,7 @@ rb_complex_set_real(VALUE cmp, VALUE r)
VALUE
rb_complex_set_imag(VALUE cmp, VALUE i)
{
- RCOMPLEX_SET_REAL(cmp, i);
+ RCOMPLEX_SET_IMAG(cmp, i);
return cmp;
}