[hackers] [slstatus] include <sys/time.h> before <sys/sensors.h> for time struct timeval || Josuah Demangeon
commit ea2e2bd00403e02bee6298cfbb78eaa45869c851
Author: Josuah Demangeon <mail_AT_josuah.net>
AuthorDate: Tue May 8 13:42:17 2018 +0200
Commit: Aaron Marcher <me_AT_drkhsh.at>
CommitDate: Tue May 8 15:05:29 2018 +0200
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 */
...
};
diff --git a/components/temperature.c b/components/temperature.c
index 136e0d4..35bdb01 100644
--- a/components/temperature.c
+++ b/components/temperature.c
_AT_@ -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)
Received on Tue May 08 2018 - 15:07:15 CEST
This archive was generated by hypermail 2.3.0
: Tue May 08 2018 - 15:12:25 CEST