summaryrefslogtreecommitdiff
path: root/ext/readline/readline.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-24 10:30:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-24 10:30:50 +0000
commit5b10c170e52d53e570b6335590552a12b002c361 (patch)
treeffec97bfd4f7b79df514ef156bc7fcba8b5872ad /ext/readline/readline.c
parent793c649f651945c995b4b95383d26495e6cacb7d (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/readline/readline.c')
-rw-r--r--ext/readline/readline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/readline/readline.c b/ext/readline/readline.c
index ba7e77f647..12837b5ac2 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);