ruby-changes:18782
From: nobu <ko1@a...>
Date: Sun, 6 Feb 2011 14:44:40 +0900 (JST)
Subject: [ruby-changes:18782] Ruby:r30808 (trunk): * ext/pty/pty.c (chfunc): suppress a warning.
nobu 2011-02-06 14:38:11 +0900 (Sun, 06 Feb 2011) New Revision: 30808 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=30808 Log: * ext/pty/pty.c (chfunc): suppress a warning. Modified files: trunk/ext/pty/pty.c Index: ext/pty/pty.c =================================================================== --- ext/pty/pty.c (revision 30807) +++ ext/pty/pty.c (revision 30808) @@ -205,7 +205,8 @@ seteuid(getuid()); #endif - return rb_f_exec(argc, argv); + rb_f_exec(argc, argv); + return 0; #undef ERROR_EXIT } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/