diff options
author | Laslo Hunhold <dev@frign.de> | 2018-05-27 17:57:52 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-27 19:53:36 +0200 |
commit | 441901d4ef0615f7c0c7c42d33af8c6846b8cb0d (patch) | |
tree | 8fc1eeed459420267490ea47a1f15be7cb97e320 /components | |
parent | 80ed2af5b0f75bf206895a864ba0617ae668e4b9 (diff) |
Use E-notation for large powers of 10
Diffstat (limited to 'components')
-rw-r--r-- | components/temperature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/temperature.c b/components/temperature.c index 4e27a9d..bbec80b 100644 --- a/components/temperature.c +++ b/components/temperature.c @@ -44,6 +44,6 @@ } /* kelvin to celsius */ - return bprintf("%d", (temp.value - 273150000) / 1000000); + return bprintf("%d", (temp.value - 273150000) / 1E6); } #endif |