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 | 682c0fedde04fe6713539726494ec2db67ba5d2a (patch) | |
tree | 8fc1eeed459420267490ea47a1f15be7cb97e320 /components/temperature.c | |
parent | c28643ce5bc8c7fd825e4eabbd915bad2b91dbd0 (diff) |
Use E-notation for large powers of 10
Diffstat (limited to 'components/temperature.c')
-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 |