* 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
This commit is contained in:
nobu 2010-05-08 15:27:48 +00:00
parent db1d9196ef
commit 349b047270
3 changed files with 7 additions and 3 deletions

View file

@ -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);
}