]> git.sur5r.net Git - i3/i3status/commitdiff
Fix the deciKelvin to Celsius conversion on FreeBSD (#195)
authorBaptiste Daroussin <baptiste.daroussin@gmail.com>
Wed, 1 Feb 2017 19:28:01 +0000 (20:28 +0100)
committerMichael Stapelberg <stapelberg@users.noreply.github.com>
Wed, 1 Feb 2017 19:28:01 +0000 (11:28 -0800)
Change from ceiled value to floored value to be consistent with the
FreeBSD kernel

https://svnweb.freebsd.org/base?view=revision&revision=300421

src/print_cpu_temperature.c

index 57cb1148fbc85fee35c65825a55911a154ede05d..56ab62a1066079374b88fa3ce908e305a347ee03 100644 (file)
@@ -13,7 +13,7 @@
 #include <err.h>
 #include <sys/types.h>
 #include <sys/sysctl.h>
-#define TZ_ZEROC 2732
+#define TZ_ZEROC 2731
 #define TZ_KELVTOC(x) (((x)-TZ_ZEROC) / 10), abs(((x)-TZ_ZEROC) % 10)
 #define TZ_AVG(x) ((x)-TZ_ZEROC) / 10
 #endif