ruby-changes:21083
From: usa <ko1@a...>
Date: Wed, 31 Aug 2011 00:50:08 +0900 (JST)
Subject: [ruby-changes:21083] usa:r33132 (trunk): * thread.c (rb_thread_select): critical typo in r33117.
usa 2011-08-31 00:49:55 +0900 (Wed, 31 Aug 2011) New Revision: 33132 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=33132 Log: * thread.c (rb_thread_select): critical typo in r33117. Modified files: trunk/ChangeLog trunk/thread.c Index: ChangeLog =================================================================== --- ChangeLog (revision 33131) +++ ChangeLog (revision 33132) @@ -1,3 +1,7 @@ +Wed Aug 31 00:48:38 2011 NAKAMURA Usaku <usa@r...> + + * thread.c (rb_thread_select): critical typo in r33117. + Wed Aug 31 00:30:49 2011 NAKAMURA Usaku <usa@r...> * test/-ext-/old_thread_select/test_old_thread_select.rb Index: thread.c =================================================================== --- thread.c (revision 33131) +++ thread.c (revision 33132) @@ -2708,7 +2708,7 @@ rb_fd_copy(efds, except, max); } - retval = rb_thread_fd_select(max, rfds, efds, wfds, timeout); + retval = rb_thread_fd_select(max, rfds, wfds, efds, timeout); if (rfds) rb_fd_term(rfds); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/