1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
* stdio-common/vfprintf.c (process_arg): Fix typo.

	* iconvdata/Makefile ($(objpfx)iconv-test.out): Also depend on TESTS.
	* math/libm-test.c (hypot_test): Fix a typo.
This commit is contained in:
Ulrich Drepper
1998-05-20 23:34:20 +00:00
parent 13d9048a16
commit a53fdad94d
2 changed files with 5 additions and 4 deletions

View File

@@ -1,14 +1,15 @@
1998-05-20 Ulrich Drepper <drepper@cygnus.com> 1998-05-20 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/vfprintf.c (process_arg): Fix typo.
* iconvdata/TESTS: New tests for EUC-KR. * iconvdata/TESTS: New tests for EUC-KR.
* iconvdata/Makefile ($(objpfx)iconv-test.out): Also depend on * iconvdata/Makefile ($(objpfx)iconv-test.out): Also depend on TESTS.
TESTS.
* iconvdata/testdata/EUC-KR: New file. * iconvdata/testdata/EUC-KR: New file.
1998-05-20 07:26 H.J. Lu <hjl@gnu.org> 1998-05-20 07:26 H.J. Lu <hjl@gnu.org>
* math/libm-test.c (hypot_test): Fix a tyypo. * math/libm-test.c (hypot_test): Fix a typo.
1998-05-20 Ulrich Drepper <drepper@cygnus.com> 1998-05-20 Ulrich Drepper <drepper@cygnus.com>

View File

@@ -891,7 +891,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap)
s2 = (const wchar_t *) string; \ s2 = (const wchar_t *) string; \
string = alloca (len + 1); \ string = alloca (len + 1); \
(void) __wcsrtombs (string, &s2, len + 1, &mbstate); \ (void) __wcsrtombs (string, &s2, len + 1, &mbstate); \
if (prec < min) \ if (prec < len) \
len = prec; \ len = prec; \
} \ } \
\ \