From 745e01d3ca47ddaaee97495ec1a26b800a811177 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 3 Aug 2015 04:35:24 +0000 Subject: thread.c: fix message * thread.c (thread_shield_get_mutex): fix object to be shown in the message, NULL pointer is useless. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index 184fed6313..dfd2b2129a 100644 --- a/thread.c +++ b/thread.c @@ -4718,7 +4718,7 @@ thread_shield_get_mutex(VALUE self) { VALUE mutex = GetThreadShieldPtr(self); if (!mutex) - rb_raise(rb_eThreadError, "destroyed thread shield - %p", (void *)mutex); + rb_raise(rb_eThreadError, "destroyed thread shield - %p", (void *)self); return mutex; } -- cgit v1.2.3