summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorJosuah Demangeon <mail@josuah.net>2018-05-08 13:42:17 +0200
committerAaron Marcher <me@drkhsh.at>2018-05-08 15:05:29 +0200
commit85f475b4e34b656b4ff56dd805e94324d1670abd (patch)
tree401cfc6b2d557336898957b821a2f118ccbd6e68 /components
parentfb702f087743a8d83b4b3ace2d88cca71ccad7df (diff)
include <sys/time.h> before <sys/sensors.h> for time struct timeval
sys/sensors.h has two structs struct timeval: sensor and ksensor: struct sensor { ... struct timeval tv; /* sensor value last change time */ ... };
Diffstat (limited to 'components')
-rw-r--r--components/temperature.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/temperature.c b/components/temperature.c
index 136e0d4..35bdb01 100644
--- a/components/temperature.c
+++ b/components/temperature.c
@@ -16,9 +16,9 @@
#include <errno.h>
#include <stdio.h>
#include <string.h>
+ #include <sys/time.h> /* before <sys/sensors.h> for struct timeval */
#include <sys/sensors.h>
#include <sys/sysctl.h>
- #include <sys/time.h>
const char *
temp(const char *null)