diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-03-05 21:17:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-03-05 21:17:30 +0000 |
commit | d35ffac1c7a88401edbfff9fa3b7c8c55560a053 (patch) | |
tree | 1527e3f8701a70b4de94a0fcee8547b2b7cdb6c6 /libio | |
parent | b1f911a801faccdcf6b37e050c0868cc2d7d50f1 (diff) | |
download | glibc-d35ffac1c7a88401edbfff9fa3b7c8c55560a053.tar glibc-d35ffac1c7a88401edbfff9fa3b7c8c55560a053.tar.gz glibc-d35ffac1c7a88401edbfff9fa3b7c8c55560a053.tar.bz2 glibc-d35ffac1c7a88401edbfff9fa3b7c8c55560a053.zip |
(_IO_str_finish): Add second parameter, which is ignored.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/strops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libio/strops.c b/libio/strops.c index 31c5df4e80..9c2650f352 100644 --- a/libio/strops.c +++ b/libio/strops.c @@ -258,14 +258,14 @@ DEFUN(_IO_str_pbackfail, (fp, c), } void -DEFUN (_IO_str_finish, (fp), - register _IO_FILE* fp) +DEFUN (_IO_str_finish, (fp, dummy), + register _IO_FILE* fp AND int dummy) { if (fp->_IO_buf_base && !(fp->_flags & _IO_USER_BUF)) (((_IO_strfile*)fp)->_s._free_buffer)(fp->_IO_buf_base); fp->_IO_buf_base = NULL; - _IO_default_finish(fp); + _IO_default_finish(fp, 0); } struct _IO_jump_t _IO_str_jumps = { |