From 3f29b2ef51c110b0b81aec3850cb6df93145e330 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Wed, 3 Jan 2007 05:38:08 +0000 Subject: [PATCH] Fix cut-and-paste bugs in the regression tests. --- tools/regression/lib/libc/stdio/test-scanfloat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/regression/lib/libc/stdio/test-scanfloat.c b/tools/regression/lib/libc/stdio/test-scanfloat.c index 3d4e159f310e..342fc734d21e 100644 --- a/tools/regression/lib/libc/stdio/test-scanfloat.c +++ b/tools/regression/lib/libc/stdio/test-scanfloat.c @@ -218,7 +218,7 @@ main(int argc, char *argv[]) assert(d == 0.0); sscanf("0x1.2345678p-1050", "%le", &d); - assert(d == 0x1.234568p-1050); + assert(d == 0x1.234567p-1050); fesetround(FE_UPWARD); @@ -248,7 +248,7 @@ main(int argc, char *argv[]) assert(d == 0.0); sscanf("0x1.2345678p-1050", "%le", &d); - assert(d == 0x1.234568p-1050); + assert(d == 0x1.234567p-1050); fesetround(FE_TONEAREST);