tracing: trace_fprobe: Fix typo of the semicolon

Fix a typo that uses ',' instead of ';' for line delimiter.

Link: https://lore.kernel.org/linux-trace-kernel/175366879192.487099.5714468217360139639.stgit@mhiramat.tok.corp.google.com/

Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
This commit is contained in:
Masami Hiramatsu (Google)
2025-07-29 08:37:52 +09:00
parent dabd3e7dcc
commit 133c302a0c
+1 -1
View File
@@ -1404,7 +1404,7 @@ static int trace_fprobe_create_cb(int argc, const char *argv[])
if (!ctx)
return -ENOMEM;
ctx->flags = TPARG_FL_KERNEL | TPARG_FL_FPROBE,
ctx->flags = TPARG_FL_KERNEL | TPARG_FL_FPROBE;
trace_probe_log_init("trace_fprobe", argc, argv);
ret = trace_fprobe_create_internal(argc, argv, ctx);