Skip to content

Commit 133c302

Browse files
committed
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) <[email protected]>
1 parent dabd3e7 commit 133c302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/trace/trace_fprobe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1404,7 +1404,7 @@ static int trace_fprobe_create_cb(int argc, const char *argv[])
14041404
if (!ctx)
14051405
return -ENOMEM;
14061406

1407-
ctx->flags = TPARG_FL_KERNEL | TPARG_FL_FPROBE,
1407+
ctx->flags = TPARG_FL_KERNEL | TPARG_FL_FPROBE;
14081408

14091409
trace_probe_log_init("trace_fprobe", argc, argv);
14101410
ret = trace_fprobe_create_internal(argc, argv, ctx);

0 commit comments

Comments
 (0)