From c6e9425c064d8378d537eaefc4705b07d72a46a0 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 13 Jun 2015 12:28:57 +0000 Subject: thread.c: indent * thread.c (rb_thread_inspect): adjust indent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thread.c b/thread.c index e59727a506..bf045a44ea 100644 --- a/thread.c +++ b/thread.c @@ -2775,7 +2775,7 @@ rb_thread_inspect(VALUE thread) status = thread_status_name(th); str = rb_sprintf("#<%"PRIsVALUE":%p", cname, (void *)thread); if (!NIL_P(th->name)) { - rb_str_catf(str, "@%"PRIsVALUE, th->name); + rb_str_catf(str, "@%"PRIsVALUE, th->name); } if (!th->first_func && th->first_proc) { VALUE loc = rb_proc_location(th->first_proc); -- cgit v1.2.3