aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-20 14:28:55 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-20 14:29:31 +0900
commitae1cc3fd4e4e926dc9d84723ae2696b9799cfe9d (patch)
tree320cc723277f40919a37edf8316cad3be36338a8 /io.c
parent02b3555874cecb93bdfff7c1ea6a80ca908785c9 (diff)
downloadruby-ae1cc3fd4e4e926dc9d84723ae2696b9799cfe9d.tar.gz
Made an internal callback function static
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index e42c2dcc0a..48592ac51a 100644
--- a/io.c
+++ b/io.c
@@ -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;