From: Ulrich Drepper Date: Wed, 20 May 1998 15:33:37 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/libc-ud-2_0_94~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9639d01449f11b0d8858e13250d49107c6b9ee69;p=platform%2Fupstream%2Fglibc.git Update. 1998-05-20 07:26 H.J. Lu * math/libm-test.c (hypot_test): Fix a tyypo. --- diff --git a/ChangeLog b/ChangeLog index 65035dd..1d87f9a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1998-05-20 07:26 H.J. Lu + + * math/libm-test.c (hypot_test): Fix a tyypo. + 1998-05-20 Ulrich Drepper * stdio-common/vfprintf.c: When precision is specified for %ls or diff --git a/math/libm-test.c b/math/libm-test.c index 40838f5..a0c662b 100644 --- a/math/libm-test.c +++ b/math/libm-test.c @@ -1987,7 +1987,7 @@ hypot_test (void) check_isinfp_ext ("hypot (-inf, x) == +inf", FUNC(hypot) (minus_infty, a), a); #ifndef TEST_INLINE - check_isinfp ("hypot (+inf, NaN) == +inf", FUNC(hypot) (minus_infty, nan_value)); + check_isinfp ("hypot (+inf, NaN) == +inf", FUNC(hypot) (plus_infty, nan_value)); check_isinfp ("hypot (-inf, NaN) == +inf", FUNC(hypot) (minus_infty, nan_value)); #endif