summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-05-20 15:33:37 +0000
committerUlrich Drepper <drepper@redhat.com>1998-05-20 15:33:37 +0000
commit9639d01449f11b0d8858e13250d49107c6b9ee69 (patch)
treef27cb91343b691d8dfcb671b23281ff12daf16a0 /math
parent93c3d288affc110d03988f453d2cd63867ff449f (diff)
Update.
1998-05-20 07:26 H.J. Lu <hjl@gnu.org> * math/libm-test.c (hypot_test): Fix a tyypo.
Diffstat (limited to 'math')
-rw-r--r--math/libm-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/libm-test.c b/math/libm-test.c
index 40838f57d4..a0c662b69c 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