* ext/pty/pty.c (chfunc): type fixed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-02-05 22:53:44 +00:00
Родитель 68ac487d19
Коммит 1bd6111488
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Fri Feb 6 07:52:57 2009 Tanaka Akira <akr@fsij.org>
* ext/pty/pty.c (chfunc): type fixed.
Fri Feb 6 02:51:59 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* string.c (rb_str_each_codepoint): update RDoc for

Просмотреть файл

@ -155,7 +155,7 @@ struct child_info {
};
static int
chfunc(void *data, char *errmsg, size_t errmsg_len)
chfunc(void *data)
{
struct child_info *carg = data;
int master = carg->master;