fix arity of rb_mutex_synchronize_m

This is just a trivial mistake introduced in
6c56dae4b2.
This commit is contained in:
卜部昌平 2019-08-28 16:18:58 +09:00
Родитель abe12d8b96
Коммит 69683968a9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -521,7 +521,7 @@ rb_mutex_synchronize(VALUE mutex, VALUE (*func)(VALUE arg), VALUE arg)
* completes. See the example under +Mutex+.
*/
static VALUE
rb_mutex_synchronize_m(VALUE self, VALUE args)
rb_mutex_synchronize_m(VALUE self)
{
if (!rb_block_given_p()) {
rb_raise(rb_eThreadError, "must be called with a block");