mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
perf top: Fix code typo in prompt_symbol()
sym_filter is what was (if ever) passed with -s option. What was typed by user, and what we were looking for, is in buf. Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> LKML-Reference: <1263396139-4798-3-git-send-email-acme@infradead.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
0895cf0a82
commit
66aeb6d5cb
@ -667,7 +667,7 @@ static void prompt_symbol(struct sym_entry **target, const char *msg)
|
||||
}
|
||||
|
||||
if (!found) {
|
||||
fprintf(stderr, "Sorry, %s is not active.\n", sym_filter);
|
||||
fprintf(stderr, "Sorry, %s is not active.\n", buf);
|
||||
sleep(1);
|
||||
return;
|
||||
} else
|
||||
|
Loading…
Reference in New Issue
Block a user