From beaf4fa25948ba91850720e79ae2fa51912dbb51 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 24 Feb 2007 10:30:50 +0000 Subject: * file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t): renamed from OpenFile. * ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h, ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c, ext/readline/readline.c, ext/socket/socket.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/readline/readline.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/readline') diff --git a/ext/readline/readline.c b/ext/readline/readline.c index ba7e77f64..12837b5ac 100644 --- a/ext/readline/readline.c +++ b/ext/readline/readline.c @@ -104,7 +104,7 @@ readline_readline(int argc, VALUE *argv, VALUE self) static VALUE readline_s_set_input(VALUE self, VALUE input) { - OpenFile *ifp; + rb_io_t *ifp; rb_secure(4); Check_Type(input, T_FILE); @@ -116,7 +116,7 @@ readline_s_set_input(VALUE self, VALUE input) static VALUE readline_s_set_output(VALUE self, VALUE output) { - OpenFile *ofp; + rb_io_t *ofp; rb_secure(4); Check_Type(output, T_FILE); -- cgit