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/vsnprintf.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libio/vsnprintf.c') diff --git a/libio/vsnprintf.c b/libio/vsnprintf.c index 2b82df5788..8cf21d31c3 100644 --- a/libio/vsnprintf.c +++ b/libio/vsnprintf.c @@ -122,11 +122,11 @@ _IO_vsnprintf (string, maxlen, format, args) maxlen = sizeof (sf.overflow_buf); } - _IO_no_init ((_IO_FILE *) &sf, 0, -1, NULL, NULL); - _IO_JUMPS ((_IO_FILE *) &sf) = &_IO_strn_jumps; + _IO_no_init (&sf.f._sbf._f, 0, -1, NULL, NULL); + _IO_JUMPS (&sf.f._sbf._f) = &_IO_strn_jumps; string[0] = '\0'; - _IO_str_init_static ((_IO_FILE *) &sf, string, maxlen - 1, string); - ret = _IO_vfprintf ((_IO_FILE *) &sf, format, args); + _IO_str_init_static (&sf.f._sbf._f, string, maxlen - 1, string); + ret = _IO_vfprintf (&sf.f._sbf._f, format, args); if (sf.f._sbf._f._IO_buf_base != sf.overflow_buf) *sf.f._sbf._f._IO_write_ptr = '\0'; -- cgit 1.4.1