diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-09-28 02:40:46 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-09-28 02:40:46 +0000 |
commit | 4191a6b90d3eeb63a31609dba29a1904efee3738 (patch) | |
tree | 6689e8d252ca17f1f90626d7ade4b144dbfccdd7 /complex.c | |
parent | 7d49923e9e9a9d1a01f3183fd798258e9d289da0 (diff) | |
download | ruby-4191a6b90d3eeb63a31609dba29a1904efee3738.tar.gz |
preserve encodings in error messages
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r-- | complex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1020,8 +1020,8 @@ nucomp_coerce(VALUE self, VALUE other) if (RB_TYPE_P(other, T_COMPLEX)) return rb_assoc_new(other, self); - rb_raise(rb_eTypeError, "%s can't be coerced into %s", - rb_obj_classname(other), rb_obj_classname(self)); + rb_raise(rb_eTypeError, "%"PRIsVALUE" can't be coerced into %"PRIsVALUE, + rb_obj_class(other), rb_obj_class(self)); return Qnil; } |