lib/libc: fix 'unsuned variable' compilation error
authorOleg Lyovin <o.lyovin@partner.samsung.com>
Tue, 1 Aug 2017 08:46:29 +0000 (11:46 +0300)
committerOleg Lyovin <o.lyovin@partner.samsung.com>
Wed, 16 Aug 2017 11:12:15 +0000 (14:12 +0300)
Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
lib/libc/stdio/lib_dtoa.c

index 3ed80b8..b25287c 100644 (file)
@@ -735,12 +735,10 @@ static const double tens[] = {
 
 #ifdef IEEE_Arith
 static const double bigtens[] = { 1e16, 1e32, 1e64, 1e128, 1e256 };
-static const double tinytens[] = { 1e-16, 1e-32, 1e-64, 1e-128, 1e-256 };
 
 #define n_bigtens 5
 #else
 static const double bigtens[] = { 1e16, 1e32 };
-static const double tinytens[] = { 1e-16, 1e-32 };
 
 #define n_bigtens 2
 #endif