summaryrefslogtreecommitdiff
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
commitb53549941d4d543191c91054e974598b0e29210b (patch)
treebcb487581ff903a83ad954992fc5217ce1b1415b /io.c
parent7f9964c14eed2e0a1a87d06f31d44bed71fbfa42 (diff)
* io.c (rb_file_sysopen): rb_file_sysopen_internal() needs four
arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/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 79f37c9d20..8b5ee5ac75 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)