From e413a8ff970fc7692e6c0050a23678605ade884e Mon Sep 17 00:00:00 2001 From: nagachika Date: Sat, 12 Mar 2022 15:52:46 +0900 Subject: merge revision(s) ecb2ff60507a41c624f59cb9da6a008ab3ec36e1: [Backport #18403] intern/select/posix.h: remove unused parameter from rb_fd_dup This unused parameter seems to be accidently introduced by https://github.com/ruby/ruby/commit/9e6e39c --- include/ruby/internal/intern/select/posix.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- include/ruby/internal/intern/select/posix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/ruby') diff --git a/include/ruby/internal/intern/select/posix.h b/include/ruby/internal/intern/select/posix.h index 6c1092b39d..0bf68ae204 100644 --- a/include/ruby/internal/intern/select/posix.h +++ b/include/ruby/internal/intern/select/posix.h @@ -55,7 +55,7 @@ rb_fd_copy(rb_fdset_t *dst, const fd_set *src, int n) } static inline void -rb_fd_dup(rb_fdset_t *dst, const fd_set *src, int n) +rb_fd_dup(rb_fdset_t *dst, const fd_set *src) { *dst = *src; } -- cgit v1.2.3