From ea2e2bd00403e02bee6298cfbb78eaa45869c851 Mon Sep 17 00:00:00 2001 From: Josuah Demangeon Date: Tue, 8 May 2018 13:42:17 +0200 Subject: [PATCH] include before 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 */ ... }; --- components/temperature.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #include #include + #include /* before for struct timeval */ #include #include - #include const char * temp(const char *null)