diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-11-18 16:53:45 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-11-18 16:53:45 +0000 |
commit | 08accd20566ec883ff03b7d7c7c991c562787bbf (patch) | |
tree | 8e169518699ab3da9cd6a2e2b13a813e9fde48a3 /libio/stdstrbufs.cc | |
parent | adf5d69f6700130c6f0934043bac56dbf9cfbae4 (diff) | |
download | gcc-08accd20566ec883ff03b7d7c7c991c562787bbf.tar.gz |
* stdstrbufs.cc (DEF_STDFILE): Use STD_VTABLE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@16567 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio/stdstrbufs.cc')
-rw-r--r-- | libio/stdstrbufs.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/stdstrbufs.cc b/libio/stdstrbufs.cc index 3f8102f4653..48aa719df86 100644 --- a/libio/stdstrbufs.cc +++ b/libio/stdstrbufs.cc @@ -58,7 +58,7 @@ extern char filebuf_vtable[]; #define DEF_STDFILE(NAME, FD, CHAIN, FLAGS) \ static _IO_lock_t _IO_stdfile_##FD##_lock = _IO_lock_initializer; \ struct _IO_FILE_plus NAME \ - = {FILEBUF_LITERAL(CHAIN, FLAGS, FD), &_IO_file_jumps} + = {FILEBUF_LITERAL(CHAIN, FLAGS, FD), STD_VTABLE} #else #define DEF_STDFILE(NAME, FD, CHAIN, FLAGS) \ struct _IO_FILE_plus NAME = {FILEBUF_LITERAL(CHAIN, FLAGS, FD), STD_VTABLE} |