diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-31 13:48:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-31 13:48:14 +0000 |
commit | 5b3ce86c1ccd1bf7b463e3bc59077c9cf632cfa0 (patch) | |
tree | cfc30cf8922b739a5daefa5e8bb0f0144b3cbcd0 /math | |
parent | 28fd0f23c1393fa430121199f3f38598eaf9d1dd (diff) | |
download | glibc-5b3ce86c1ccd1bf7b463e3bc59077c9cf632cfa0.zip glibc-5b3ce86c1ccd1bf7b463e3bc59077c9cf632cfa0.tar.gz glibc-5b3ce86c1ccd1bf7b463e3bc59077c9cf632cfa0.tar.bz2 |
Update.
1999-01-31 Ulrich Drepper <drepper@cygnus.com>
* math/libm-test.c (fdim_test): Fix typo in message.
Patch by Paul Kimoto <kimoto@spacenet.tn.cornell.edu>.
Diffstat (limited to 'math')
-rw-r--r-- | math/libm-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/libm-test.c b/math/libm-test.c index 69246c5..d7a427e 100644 --- a/math/libm-test.c +++ b/math/libm-test.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1997. @@ -2178,7 +2178,7 @@ fdim_test (void) check ("fdim (+0, +0) = +0", FUNC(fdim) (0, 0), 0); check ("fdim (9, 0) = 9", FUNC(fdim) (9, 0), 9); check ("fdim (0, 9) = 0", FUNC(fdim) (0, 9), 0); - check ("fdim (-9, 0) = 9", FUNC(fdim) (-9, 0), 0); + check ("fdim (-9, 0) = 0", FUNC(fdim) (-9, 0), 0); check ("fdim (0, -9) = 9", FUNC(fdim) (0, -9), 9); check_isinfp ("fdim (+inf, 9) = +inf", FUNC(fdim) (plus_infty, 9)); |