aboutsummaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-16 08:29:21 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-16 08:29:21 +0000
commitc5e9beac25c3cf4e5ff317468db043455c504a73 (patch)
tree058d2f489e2c0442bed2e0c55f12bf3af3966474 /thread.c
parent962909f0efdce5852eac855f891b42edfa8d6817 (diff)
downloadruby-c5e9beac25c3cf4e5ff317468db043455c504a73.tar.gz
thread.c: class name encoding
* thread.c (thread_s_new): preserve the encoding of the class name in an error message. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index bd517366cd..6cf6d52727 100644
--- a/thread.c
+++ b/thread.c
@@ -736,8 +736,8 @@ thread_s_new(int argc, VALUE *argv, VALUE klass)
rb_obj_call_init(thread, argc, argv);
GetThreadPtr(thread, th);
if (!th->first_args) {
- rb_raise(rb_eThreadError, "uninitialized thread - check `%s#initialize'",
- rb_class2name(klass));
+ rb_raise(rb_eThreadError, "uninitialized thread - check `%"PRIsVALUE"#initialize'",
+ klass);
}
return thread;
}