From 9a69c067c3d1c4b614b1324706a372f99cd7e19f Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 17 Mar 2002 11:41:27 +0000 Subject: [PATCH] negative float const --- tcctest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcctest.c b/tcctest.c index 8677a8f3..333b6520 100644 --- a/tcctest.c +++ b/tcctest.c @@ -1084,7 +1084,7 @@ FTEST(f, float, "%f") FTEST(d, double, "%f") FTEST(ld, long double, "%Lf") -double ftab1[3] = { 1.2, 3.4, 5.6 }; +double ftab1[3] = { 1.2, 3.4, -5.6 }; void float_test(void) -- 2.11.4.GIT