strip trailing spaces [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2021-02-09 16:59:15 +09:00
parent 5f69a7f604
commit 8776606b1d
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6
1 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ rb_fiber_scheduler_process_wait(VALUE scheduler, rb_pid_t pid, int flags)
VALUE arguments[] = {
PIDT2NUM(pid), RB_INT2NUM(flags)
};
return rb_check_funcall(scheduler, id_process_wait, 2, arguments);
}
@ -166,7 +166,7 @@ rb_fiber_scheduler_io_read(VALUE scheduler, VALUE io, VALUE buffer, size_t offse
VALUE arguments[] = {
io, buffer, SIZET2NUM(offset), SIZET2NUM(length)
};
return rb_check_funcall(scheduler, id_io_read, 4, arguments);
}