* proc.c (rb_proc_call, bmcall): commit miss.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-03-14 09:19:55 +00:00
Родитель 4fc5c89700
Коммит eca77cc85c
1 изменённых файлов: 1 добавлений и 2 удалений

3
proc.c
Просмотреть файл

@ -543,7 +543,6 @@ check_argc(long argc)
VALUE
rb_proc_call(VALUE self, VALUE args)
{
long argc = ;
rb_proc_t *proc;
GetProcPtr(self, proc);
return rb_vm_invoke_proc(GET_THREAD(), proc, proc->block.self,
@ -1646,7 +1645,7 @@ bmcall(VALUE args, VALUE method)
argc = 1;
}
else {
argc = check_argc(RARRAY_LEN(argc));
argc = check_argc(RARRAY_LEN(args));
}
ret = rb_method_call(argc, RARRAY_PTR(a), method);
a = args;