summaryrefslogtreecommitdiff
path: root/components/temperature.c
diff options
context:
space:
mode:
authorLaslo Hunhold <dev@frign.de>2018-05-27 17:57:52 +0200
committerAaron Marcher <me@drkhsh.at>2018-05-27 19:53:36 +0200
commit441901d4ef0615f7c0c7c42d33af8c6846b8cb0d (patch)
tree8fc1eeed459420267490ea47a1f15be7cb97e320 /components/temperature.c
parent80ed2af5b0f75bf206895a864ba0617ae668e4b9 (diff)
Use E-notation for large powers of 10
Diffstat (limited to 'components/temperature.c')
-rw-r--r--components/temperature.c2
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