aboutsummaryrefslogtreecommitdiffstats
path: root/thread_pthread.c
diff options
context:
space:
mode:
authorsvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-30 03:22:09 +0000
committersvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-30 03:22:09 +0000
commitfae6c6bfd850f49e595d625659c9b5d8816a8c7c (patch)
treed41638cba84dfc5e3db7732630a7ecdc01ce4c8d /thread_pthread.c
parent54726befc3eb52bf06640bfb07664dace3721d14 (diff)
downloadruby-fae6c6bfd850f49e595d625659c9b5d8816a8c7c.tar.gz
* expand tabs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65439 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 648bf8f3d5..a8bb4c7178 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -1620,12 +1620,12 @@ native_set_thread_name(rb_thread_t *th)
size_t len;
int n;
- name = RSTRING_PTR(RARRAY_AREF(loc, 0));
+ name = RSTRING_PTR(RARRAY_AREF(loc, 0));
p = strrchr(name, '/'); /* show only the basename of the path. */
if (p && p[1])
name = p + 1;
- n = snprintf(buf, sizeof(buf), "%s:%d", name, NUM2INT(RARRAY_AREF(loc, 1)));
+ n = snprintf(buf, sizeof(buf), "%s:%d", name, NUM2INT(RARRAY_AREF(loc, 1)));
rb_gc_force_recycle(loc); /* acts as a GC guard, too */
len = (size_t)n;