diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-02-09 18:36:22 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-02-09 18:36:22 +0000 |
| commit | 1b4a61b687fad86598831bd565800abf2f60f4c8 (patch) | |
| tree | bcb487581ff903a83ad954992fc5217ce1b1415b /io.c | |
| parent | 633af4162c47c0cc038649ebf9d5365e2852d5ea (diff) | |
| download | ruby-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
