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 (chfunc): make it static.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2008-12-15 12:02:09 +00:00
parent 9bfd822bd1
commit 67e43bfdf3
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Dec 15 21:01:46 2008 Tanaka Akira <akr@fsij.org>
* ext/pty/pty.c (chfunc): make it static.
Mon Dec 15 20:59:10 2008 Tanaka Akira <akr@fsij.org>
* ext/pty/pty.c (child_info): add slavename.

View file

@ -150,7 +150,8 @@ struct child_info {
VALUE *argv;
};
int chfunc(void *data)
static int
chfunc(void *data)
{
struct child_info *carg = data;
int master = carg->master;