From 1b31fff9386d0af6160b1b5079a4a667802ebb4e Mon Sep 17 00:00:00 2001 From: das Date: Wed, 3 Jan 2007 05:38:08 +0000 Subject: 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(-) (limited to 'tools/regression/lib/libc/stdio/test-scanfloat.c') diff --git a/tools/regression/lib/libc/stdio/test-scanfloat.c b/tools/regression/lib/libc/stdio/test-scanfloat.c index 3d4e159..342fc73 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); -- cgit v1.1