[前][次][番号順一覧][スレッド一覧]

ruby-changes:71379

From: nagachika <ko1@a...>
Date: Sat, 12 Mar 2022 16:54:24 +0900 (JST)
Subject: [ruby-changes:71379] e413a8ff97 (ruby_3_0): merge revision(s) ecb2ff60507a41c624f59cb9da6a008ab3ec36e1: [Backport #18403]

https://git.ruby-lang.org/ruby.git/commit/?id=e413a8ff97

From e413a8ff970fc7692e6c0050a23678605ade884e Mon Sep 17 00:00:00 2001
From: nagachika <nagachika@r...>
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 +-
 version.h                                   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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) https://github.com/ruby/ruby/blob/trunk/include/ruby/internal/intern/select/posix.h#L55
 }
 
 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;
 }
diff --git a/version.h b/version.h
index 887a86547a..b77710055f 100644
--- a/version.h
+++ b/version.h
@@ -12,7 +12,7 @@ https://github.com/ruby/ruby/blob/trunk/version.h#L12
 # define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
 #define RUBY_VERSION_TEENY 4
 #define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
-#define RUBY_PATCHLEVEL 181
+#define RUBY_PATCHLEVEL 182
 
 #define RUBY_RELEASE_YEAR 2022
 #define RUBY_RELEASE_MONTH 3
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]