summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-13 12:28:57 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-13 12:28:57 +0000
commitc6e9425c064d8378d537eaefc4705b07d72a46a0 (patch)
tree919f6454dbe223a5d7866044cdc8da6776b6e43e
parent180ca79e258ba67f7c99b9f0bb6a20d5568bd451 (diff)
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
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
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);