From: "Steven Rostedt (VMware)" <rostedt@xxxxxxxxxxx> The event-parse.h references enum tep_loglevel which is defined in event-utils.h. If a program includes event-utils.h first, it will get a warning about using that enum in a parameter before it is declared. Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> --- src/event-utils.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/event-utils.h b/src/event-utils.h index 695905d..da95027 100644 --- a/src/event-utils.h +++ b/src/event-utils.h @@ -10,6 +10,8 @@ #include <stdarg.h> #include <stdbool.h> +#include <event-parse.h> + void tep_warning(const char *fmt, ...); void tep_info(const char *fmt, ...); /* Can be overridden */ -- 2.29.2