diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-17 06:16:33 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-17 06:16:33 +0000 |
| commit | 88753d13a675dbcaf793a4d188a4ee06c5bf1f46 (patch) | |
| tree | 87a408ce53f5354a8aa53f227b5dd92219177e73 /ext | |
| parent | 50a00975bde1e7b02bd90b6f49494f12768e4233 (diff) | |
merges r20758 from trunk into ruby_1_9_1.
* ext/pty/pty.c (chfunc): make it static.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/pty/pty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/pty/pty.c b/ext/pty/pty.c index 089322967..ce805544f 100644 --- a/ext/pty/pty.c +++ b/ext/pty/pty.c @@ -192,7 +192,8 @@ struct child_info { VALUE *argv; }; -int chfunc(void *data) +static int +chfunc(void *data) { struct child_info *carg = data; int master = carg->master; |
