This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH] Fix copy'n'pasto.
- From: Thomas Schwinge <thomas at codesourcery dot com>
- To: <libc-alpha at sourceware dot org>
- Cc: Thomas Schwinge <thomas at codesourcery dot com>
- Date: Tue, 5 Mar 2013 20:22:45 +0100
- Subject: [PATCH] Fix copy'n'pasto.
* misc/tst-efgcvt.c (special): Fix copy'n'pasto.
---
misc/tst-efgcvt.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git misc/tst-efgcvt.c misc/tst-efgcvt.c
index 87d8c63..c989649 100644
--- misc/tst-efgcvt.c
+++ misc/tst-efgcvt.c
@@ -177,7 +177,7 @@ special (void)
p = ecvt (INFINITY, 10, &decpt, &sign);
if (sign != 0 || strcmp (p, "inf") != 0)
- output_error ("ecvt", NAN, 10, "inf", 0, 0, p, decpt, sign);
+ output_error ("ecvt", INFINITY, 10, "inf", 0, 0, p, decpt, sign);
/* Simply make sure these calls with large NDIGITs don't crash. */
(void) ecvt (123.456, 10000, &decpt, &sign);
--
1.7.4.1