From f0d8cfd73c91a95ac1faa6702e75bfa821d57e05 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 1 Dec 1999 21:05:53 +0000 Subject: Update. 1999-12-01 Ulrich Drepper * libio/iosetbuffer.c: Use _IO_WSETBUF instead of constructing function call directly. * libio/iosetvbuf.c: Likewise. --- libio/iosetbuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libio/iosetbuffer.c') diff --git a/libio/iosetbuffer.c b/libio/iosetbuffer.c index 5acbf5e812..852a2dd36c 100644 --- a/libio/iosetbuffer.c +++ b/libio/iosetbuffer.c @@ -40,7 +40,7 @@ _IO_setbuffer (fp, buf, size) (void) _IO_SETBUF (fp, buf, size); if (fp->_vtable_offset == 0 && fp->_mode == 0) /* We also have to set the buffer using the wide char function. */ - (*fp->_wide_data->_wide_vtable->__setbuf) (fp, buf, size); + (void) _IO_WSETBUF (fp, buf, size); _IO_funlockfile (fp); _IO_cleanup_region_end (0); } -- cgit 1.4.1