projects
/
suckless
/
slstatus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
666f285
)
include <sys/time.h> before <sys/sensors.h> for time struct timeval
author
Josuah Demangeon
<mail@josuah.net>
Tue, 8 May 2018 11:42:17 +0000
(13:42 +0200)
committer
Aaron Marcher
<me@drkhsh.at>
Tue, 8 May 2018 13:05:29 +0000
(15:05 +0200)
sys/sensors.h has two structs struct timeval: sensor and ksensor:
struct sensor {
...
struct timeval tv; /* sensor value last change time */
...
};
components/temperature.c
patch
|
blob
|
history
diff --git
a/components/temperature.c
b/components/temperature.c
index 136e0d4133bfb7dcacb8c1db0ca0a149e987aeda..35bdb01079ac2da680fe45d4d76ab2a57b587094 100644
(file)
--- 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)