summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-08 15:27:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-08 15:27:48 +0000
commit6aa05eba8a13e92338a7c6cd531107bc11132f19 (patch)
tree312509e17280a113419fcba84d8d5c415322099b /thread.c
parent9f7feadf03dde2618693ea1d25975511843376a4 (diff)
* thread.c (rb_thread_aset): fixed argument type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 668e698cea..8fc02ec534 100644
--- a/thread.c
+++ b/thread.c
@@ -2052,7 +2052,7 @@ rb_thread_local_aset(VALUE thread, ID id, VALUE val)
*/
static VALUE
-rb_thread_aset(VALUE self, ID id, VALUE val)
+rb_thread_aset(VALUE self, VALUE id, VALUE val)
{
return rb_thread_local_aset(self, rb_to_id(id), val);
}