From 88753d13a675dbcaf793a4d188a4ee06c5bf1f46 Mon Sep 17 00:00:00 2001 From: yugui Date: Wed, 17 Dec 2008 06:16:33 +0000 Subject: 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 --- ChangeLog | 4 ++++ ext/pty/pty.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a1285799c..81f3bf73a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Dec 15 21:01:46 2008 Tanaka Akira + + * ext/pty/pty.c (chfunc): make it static. + Mon Dec 15 20:16:46 2008 NAKAMURA Usaku * common.mk (EXTMK_ARGS): shouldn't use ``\"'' because cmd.exe eat 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; -- cgit