diff options
-rw-r--r-- | tools/perf/builtin-inject.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/perf/builtin-inject.c b/tools/perf/builtin-inject.c index b5ab084233fa..e249f244b22a 100644 --- a/tools/perf/builtin-inject.c +++ b/tools/perf/builtin-inject.c | |||
@@ -14,7 +14,6 @@ | |||
14 | 14 | ||
15 | #include "util/parse-options.h" | 15 | #include "util/parse-options.h" |
16 | 16 | ||
17 | static char const *input_name = "-"; | ||
18 | static bool inject_build_ids; | 17 | static bool inject_build_ids; |
19 | 18 | ||
20 | static int perf_event__repipe_synth(struct perf_tool *tool __maybe_unused, | 19 | static int perf_event__repipe_synth(struct perf_tool *tool __maybe_unused, |
@@ -245,7 +244,7 @@ static int __cmd_inject(void) | |||
245 | perf_inject.tracing_data = perf_event__repipe_tracing_data; | 244 | perf_inject.tracing_data = perf_event__repipe_tracing_data; |
246 | } | 245 | } |
247 | 246 | ||
248 | session = perf_session__new(input_name, O_RDONLY, false, true, &perf_inject); | 247 | session = perf_session__new("-", O_RDONLY, false, true, &perf_inject); |
249 | if (session == NULL) | 248 | if (session == NULL) |
250 | return -ENOMEM; | 249 | return -ENOMEM; |
251 | 250 | ||