projects
/
rtos
/
tinyara.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
beb7e94
)
lib/libc: fix 'unsuned variable' compilation error
author
Oleg Lyovin
<o.lyovin@partner.samsung.com>
Tue, 1 Aug 2017 08:46:29 +0000
(11:46 +0300)
committer
Oleg 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
patch
|
blob
|
history
diff --git
a/lib/libc/stdio/lib_dtoa.c
b/lib/libc/stdio/lib_dtoa.c
index
3ed80b8
..
b25287c
100644
(file)
--- a/
lib/libc/stdio/lib_dtoa.c
+++ b/
lib/libc/stdio/lib_dtoa.c
@@
-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