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
This commit is contained in:
Yuta Saito 2021-12-11 00:51:41 +09:00 коммит произвёл Yusuke Endoh
Родитель e5ff030f60
Коммит ecb2ff6050
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -95,11 +95,10 @@ RBIMPL_ATTR_NOALIAS()
*
* @param[out] dst Target fdset.
* @param[in] src Source fdset.
* @param[in] n Unused parameter.
* @post `dst` is a copy of `src`.
*/
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;
}