diff mbox series

libtraceeval samples: Have samples use traceeval.h and not traceeval-hist.h

Message ID 20231003134607.0cad0947@gandalf.local.home (mailing list archive)
State Accepted
Headers show
Series libtraceeval samples: Have samples use traceeval.h and not traceeval-hist.h | expand

Commit Message

Steven Rostedt Oct. 3, 2023, 5:46 p.m. UTC
From: "Steven Rostedt (Google)" <rostedt@goodmis.org>

After renaming traceeval-hist.h over to traceeval.h, the sample code still
referenced the traceeval-hist.h. Fix that.

Fixes: 1a6052f926ad ("libtraceeval: Move traceeval-hist.h to traceeval.h")
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
 samples/task-eval.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/samples/task-eval.c b/samples/task-eval.c
index 361c4a835f06..4421bd90ad3c 100644
--- a/samples/task-eval.c
+++ b/samples/task-eval.c
@@ -5,7 +5,7 @@ 
 #include <getopt.h>
 #include <errno.h>
 #include <trace-cmd.h>
-#include <traceeval-hist.h>
+#include <traceeval.h>
 
 static char *argv0;