aboutsummaryrefslogtreecommitdiffstats
path: root/compar.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-21 04:39:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-21 04:39:32 +0000
commit3118c4c46e829e5d1dfcd57c45807b9ff64db8f0 (patch)
tree41e7190d12da74b21fecec38da899a57d7d20622 /compar.c
parentdafeb23e995ca54268903badb3c37b9ed23a5ae1 (diff)
downloadruby-3118c4c46e829e5d1dfcd57c45807b9ff64db8f0.tar.gz
compar.c: use Module#to_s
* compar.c (rb_cmperr): use Module#to_s so that names in a message can be overridden by to_s. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compar.c')
-rw-r--r--compar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compar.c b/compar.c
index a38668edf1..81dff38f49 100644
--- a/compar.c
+++ b/compar.c
@@ -24,10 +24,10 @@ rb_cmperr(VALUE x, VALUE y)
classname = rb_inspect(y);
}
else {
- classname = rb_class_path(rb_obj_class(y));
+ classname = rb_obj_class(y);
}
rb_raise(rb_eArgError, "comparison of %"PRIsVALUE" with %"PRIsVALUE" failed",
- rb_class_path(rb_obj_class(x)), classname);
+ rb_obj_class(x), classname);
}
static VALUE