On Sat, Jun 12, 2021 at 4:00 PM Steven Rostedt <rostedt@xxxxxxxxxxx> wrote: > > On Fri, 11 Jun 2021 18:45:01 -0700 > Ian Rogers <irogers@xxxxxxxxxx> wrote: > > > From: Claire Jensen <cjense@xxxxxxxxxx> > > > > Signed-off-by: Claire Jensen <cjense@xxxxxxxxxx> > > Signed-off-by: Ian Rogers <irogers@xxxxxxxxxx> > > --- > > src/event-utils.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > 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" > > Thanks for the update, but event-parse.h is part of the exported > library and even though it happens to be local to this file, we use the > '<' and '>' to denote that it is a library header and not a local one. > > -- Steve Would it be more conventional in this situation to use quotes within the library and angles outside? This change is within the library and not with code trying to link against it. Thanks, Ian > > > > > void tep_warning(const char *fmt, ...); > > void tep_info(const char *fmt, ...); >