From b79ba4a745e54e1767e770a45fb141eeb48bb1ed Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 23 Mar 2013 08:45:32 +0000 Subject: [PATCH] * array.c (take_items): honor encoding of class name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/array.c b/array.c index da94b3a100..c0f6dd8cb6 100644 --- a/array.c +++ b/array.c @@ -3050,8 +3050,8 @@ take_items(VALUE obj, long n) result = rb_ary_new2(n); args[0] = result; args[1] = (VALUE)n; if (rb_check_block_call(obj, idEach, 0, 0, take_i, (VALUE)args) == Qundef) - rb_raise(rb_eTypeError, "wrong argument type %s (must respond to :each)", - rb_obj_classname(obj)); + rb_raise(rb_eTypeError, "wrong argument type %"PRIsVALUE" (must respond to :each)", + rb_obj_class(obj)); return result; }