소스 검색

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 */
		...
	};
Josuah Demangeon 7 년 전
부모
커밋
ea2e2bd004
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      components/temperature.c

+ 1 - 1
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)