From e1b13a63d06d2ec8b122db5c76b920544b32314a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 19 Aug 1999 16:47:42 +0000 Subject: Update. 1999-08-19 Andreas Schwab * libio/iovswscanf.c (vswscanf): Make stream unoriented initially and call _IO_fwide, to get the wide stream state initialized correctly. Don't set _IO_JUMPS. * libio/vsnprintf.c (_IO_vsnprintf): Avoid casts to _IO_FILE *. * libio/vswprintf.c (_IO_vswprintf): Likewise. Pass _IO_wstrn_jumps to _IO_no_init instead of setting _IO_WIDE_JUMPS directly. 1999-08-19 Andreas Jaeger * math/libm-test.c (jn_test): Fix typo in description. (erfc_test): Add some more tests. (erf_test): Add some more tests. 1999-08-19 Andreas Schwab * csu/Makefile ($(objpfx)initfini.s): Replace $(no-exceptions) by expression using $(exceptions). --- libio/iovswscanf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libio/iovswscanf.c') diff --git a/libio/iovswscanf.c b/libio/iovswscanf.c index f0ab62a19c..262b018fbe 100644 --- a/libio/iovswscanf.c +++ b/libio/iovswscanf.c @@ -40,8 +40,8 @@ vswscanf (string, format, args) _IO_lock_t lock; sf._sbf._f._lock = &lock; #endif - _IO_no_init (&sf._sbf._f, 0, 1, &wd, &_IO_wstr_jumps); - _IO_JUMPS (&sf._sbf._f) = &_IO_str_jumps; + _IO_no_init (&sf._sbf._f, 0, 0, &wd, &_IO_wstr_jumps); + _IO_fwide (&sf._sbf._f, 1); _IO_wstr_init_static (&sf._sbf._f, (wchar_t *)string, 0, NULL); ret = _IO_vfwscanf (&sf._sbf._f, format, args, NULL); return ret; -- cgit 1.4.1