commit | e6f4f623b7d24367705ae622860e1a6cca1e0e19 | [log] [tgz] |
---|---|---|
author | Kumar Gala <kumar.gala@linaro.org> | Thu Jul 12 11:42:54 2018 -0500 |
committer | Kumar Gala <kumar.gala@gmail.com> | Thu Jul 12 14:57:52 2018 -0500 |
tree | 4bdf6e8a26d784cf3f1a3b5fa2ed739f42250222 | |
parent | 21d6e302f670ccff702d6d785b95637555ea9e4d [diff] |
libc: minimal: Fix handling of floating point exponent For %{e,E,g,G} conversion specifiers the C standard says the exponent contains at least two digits, and only as many digits are necessary. So instead of 1.234000e-001 we should have 1.234000e-01. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>