1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/pty/pty.c (pty_check): Restore "not reached" comment.

[Ruby 1.9 - Bug #4756]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31877 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2011-05-31 22:27:35 +00:00
parent 290c4db6e6
commit 161cdee265
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Jun 1 07:26:19 2011 Eric Hodel <drbrain@segment7.net>
* ext/pty/pty.c (pty_check): Restore "not reached" comment.
[Ruby 1.9 - Bug #4756]
Wed Jun 1 07:21:40 2011 Eric Hodel <drbrain@segment7.net>
* ext/zlib/zlib.c: Fix document-method declarations for set_sync and

View file

@ -648,7 +648,7 @@ pty_check(int argc, VALUE *argv, VALUE self)
if (!RTEST(exc)) return rb_last_status_get();
raise_from_check(cpid, status);
return Qnil;
return Qnil; /* not reached */
}
static VALUE cPTY;