aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-23 14:55:09 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-23 14:55:09 +0000
commit9d05b9a4b34862c7c9db80b5c3b3ed88bb526733 (patch)
tree30e64bc5169d18c19efe2bc4df76d22a2feebece /io.c
parent30235cd14e09b0b70ecf7b92728aea7cd24e22f5 (diff)
downloadruby-9d05b9a4b34862c7c9db80b5c3b3ed88bb526733.tar.gz
* io.c (io_close): missing prototype.
* ext/socket/socket.c (bsock_do_not_rev_lookup_set): ditto. * ext/win32ole/win32ole.c (foletype_guid, foletype_progid): ditto. * error.c (syserr_initialize): length argument of sprintf() is an int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3990 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/io.c b/io.c
index 1377df4b51..956d698511 100644
--- a/io.c
+++ b/io.c
@@ -1424,6 +1424,7 @@ rb_io_close_m(io)
static VALUE
io_close(io)
+ VALUE io;
{
return rb_funcall(io, rb_intern("close"), 0, 0);
}