[RESEND PATCH] perf: script: fix missing ',' for fields option

Changbin Du posted 1 patch 2 years, 2 months ago
tools/perf/builtin-script.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[RESEND PATCH] perf: script: fix missing ',' for fields option
Posted by Changbin Du 2 years, 2 months ago
A comma is missed at the end of line.

Signed-off-by: Changbin Du <changbin.du@huawei.com>
---
 tools/perf/builtin-script.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
index 200b3e7ea8da..c01894b9b9bf 100644
--- a/tools/perf/builtin-script.c
+++ b/tools/perf/builtin-script.c
@@ -3899,7 +3899,7 @@ int cmd_script(int argc, const char **argv)
 		     "comma separated output fields prepend with 'type:'. "
 		     "+field to add and -field to remove."
 		     "Valid types: hw,sw,trace,raw,synth. "
-		     "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,dsoff"
+		     "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,dsoff,"
 		     "addr,symoff,srcline,period,iregs,uregs,brstack,"
 		     "brstacksym,flags,data_src,weight,bpf-output,brstackinsn,"
 		     "brstackinsnlen,brstackoff,callindent,insn,insnlen,synth,"
-- 
2.25.1
Re: [RESEND PATCH] perf: script: fix missing ',' for fields option
Posted by Namhyung Kim 2 years, 2 months ago
On Tue, 17 Oct 2023 09:55:24 +0800, Changbin Du wrote:
> A comma is missed at the end of line.
> 
> 

Applied to perf-tools-next, thanks!