Made an internal callback function static

This commit is contained in:
Nobuyoshi Nakada 2020-12-20 14:28:55 +09:00
parent 02b3555874
commit ae1cc3fd4e
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

2
io.c
View File

@ -11007,7 +11007,7 @@ struct wait_for_single_fd {
VALUE result;
};
void *
static void *
rb_thread_scheduler_wait_for_single_fd(void * _args)
{
struct wait_for_single_fd *args = (struct wait_for_single_fd *)_args;