]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
tracing: trace_fprobe: Fix typo of the semicolon
authorMasami Hiramatsu (Google) <mhiramat@kernel.org>
Mon, 28 Jul 2025 02:13:12 +0000 (11:13 +0900)
committerMasami Hiramatsu (Google) <mhiramat@kernel.org>
Mon, 28 Jul 2025 23:37:52 +0000 (08:37 +0900)
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>
kernel/trace/trace_fprobe.c

index 9d14a910fbf74cb5995715e6a639f2d1a5639b5b..b36ade43d4b3bf3c7aa959c3bb0f9532b8eca674 100644 (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);