summaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-09 18:36:22 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-09 18:36:22 +0000
commit1b4a61b687fad86598831bd565800abf2f60f4c8 (patch)
treebcb487581ff903a83ad954992fc5217ce1b1415b /io.c
parent633af4162c47c0cc038649ebf9d5365e2852d5ea (diff)
downloadruby-1b4a61b687fad86598831bd565800abf2f60f4c8.tar.gz
ruby-1b4a61b687fad86598831bd565800abf2f60f4c8.tar.xz
ruby-1b4a61b687fad86598831bd565800abf2f60f4c8.zip
* io.c (rb_file_sysopen): rb_file_sysopen_internal() needs four
arguments. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 79f37c9d2..8b5ee5ac7 100644
--- a/io.c
+++ b/io.c
@@ -1869,7 +1869,7 @@ rb_file_sysopen(fname, flags, mode)
const char *fname;
int flags, mode;
{
- return rb_file_sysopen_internal(io_alloc(rb_cFile));
+ return rb_file_sysopen_internal(io_alloc(rb_cFile), fname, flags, mode);
}
#if defined (_WIN32) || defined(DJGPP) || defined(__CYGWIN__) || defined(__human68k__) || defined(__VMS)