summaryrefslogtreecommitdiffstats
path: root/ext/dl
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
commitbeaf4fa25948ba91850720e79ae2fa51912dbb51 (patch)
treeffec97bfd4f7b79df514ef156bc7fcba8b5872ad /ext/dl
parent1d2d2cabc55e592cb0105f7c225b7373ab442b03 (diff)
downloadruby-beaf4fa25948ba91850720e79ae2fa51912dbb51.tar.gz
ruby-beaf4fa25948ba91850720e79ae2fa51912dbb51.tar.xz
ruby-beaf4fa25948ba91850720e79ae2fa51912dbb51.zip
* 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
Diffstat (limited to 'ext/dl')
-rw-r--r--ext/dl/cptr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dl/cptr.c b/ext/dl/cptr.c
index b947ef27e..abfd9e8d1 100644
--- a/ext/dl/cptr.c
+++ b/ext/dl/cptr.c
@@ -418,7 +418,7 @@ VALUE
rb_dlptr_s_to_ptr(VALUE self, VALUE val)
{
if( rb_obj_is_kind_of(val, rb_cIO) == Qtrue ){
- OpenFile *fptr;
+ rb_io_t *fptr;
FILE *fp;
GetOpenFile(val, fptr);
#if RUBY_VERSION_CODE >= 190