aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire Jensen <cjense@google.com>2021-06-17 19:43:26 +0000
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2021-06-22 17:35:22 -0400
commite01defa80e85d5a6d68f33c6100a2ad6ee6f2448 (patch)
treefedd88333be33e33b421fca501e92abbd728d985
parent5fe6b476c7298b525f5b30ef192dd78578ac6e40 (diff)
downloadlibtraceevent-e01defa80e85d5a6d68f33c6100a2ad6ee6f2448.tar.gz
libtraceevent: Changed angled brackets to double quotes
Certain build systems, such as bazel, are picky about angled brackets vs double quotes. the failure you see when building is: In file included from src/event-parse.c:27: src/event-utils.h:13:10: error: 'event-parse.h' file not found with <angled> include; use "quotes" instead #include <event-parse.h> ^~~~~~~~~~~~~~~ "event-parse.h" Arguably -iquote is more correct within the library build, hence bazel using it. The libtraceevent Makefile is using -I, hence this not being a problem for others. Link: https://lore.kernel.org/linux-trace-devel/20210617194326.2107129-2-cjense@google.com Signed-off-by: Claire Jensen <cjense@google.com> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
-rw-r--r--src/event-utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event-utils.h b/src/event-utils.h
index d377201..44f7968 100644
--- a/src/event-utils.h
+++ b/src/event-utils.h
@@ -10,7 +10,7 @@
#include <stdarg.h>
#include <stdbool.h>
-#include <event-parse.h>
+#include "event-parse.h"
void tep_warning(const char *fmt, ...);
void tep_info(const char *fmt, ...);