summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorgit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-05-27 03:10:15 +0900
committergit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-05-27 03:10:15 +0900
commit5a6c77bbe8acd5929421c359bca57ef559a4f0fe (patch)
treefcc3cbb57d3ab878f67b91f0d5ccd5988c80d681 /thread.c
parent39eadca76b48fc7841da688f6745e40897ec37ff (diff)
* expand tabs.
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 d4f33a2e42..bfe741c908 100644
--- a/thread.c
+++ b/thread.c
@@ -3325,7 +3325,7 @@ VALUE
rb_thread_local_aset(VALUE thread, ID id, VALUE val)
{
if (OBJ_FROZEN(thread)) {
- rb_frozen_error_raise(thread, "can't modify frozen thread locals");
+ rb_frozen_error_raise(thread, "can't modify frozen thread locals");
}
return threadptr_local_aset(rb_thread_ptr(thread), id, val);
@@ -3402,7 +3402,7 @@ rb_thread_variable_set(VALUE thread, VALUE id, VALUE val)
VALUE locals;
if (OBJ_FROZEN(thread)) {
- rb_frozen_error_raise(thread, "can't modify frozen thread locals");
+ rb_frozen_error_raise(thread, "can't modify frozen thread locals");
}
locals = rb_ivar_get(thread, id_locals);