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
commit349b04727008d1329a53c7946da158e21e4275e9 (patch)
treebc8ad8fbec90f5c50194e80e0c5f3519a90b7834 /thread.c
parentdb1d9196ef3bdbfe21ba8bb09677cedbfdcae962 (diff)
* thread.c (rb_thread_aset): fixed argument type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@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);
}