diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2011-11-15 06:44:07 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2011-11-15 06:44:07 +0000 |
commit | 37d6f8a9e68d1c220baf8591ccc26900c874bb2b (patch) | |
tree | cbd8ed43ef703bf724c052cbf7053975612ec9cc /usr.sbin/pmcstat/pmcpl_calltree.c | |
parent | 35ee51e29118c57d1ed6cf3a2c7aca6db8b66b10 (diff) | |
download | src-37d6f8a9e68d1c220baf8591ccc26900c874bb2b.tar.gz src-37d6f8a9e68d1c220baf8591ccc26900c874bb2b.zip |
Improve the chances of matching an outputted string with the line of code.
Notes
Notes:
svn path=/head/; revision=227524
Diffstat (limited to 'usr.sbin/pmcstat/pmcpl_calltree.c')
-rw-r--r-- | usr.sbin/pmcstat/pmcpl_calltree.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/pmcstat/pmcpl_calltree.c b/usr.sbin/pmcstat/pmcpl_calltree.c index af3317a36def..3f3f71737e9d 100644 --- a/usr.sbin/pmcstat/pmcpl_calltree.c +++ b/usr.sbin/pmcstat/pmcpl_calltree.c @@ -575,7 +575,8 @@ pmcpl_ct_topkeypress(int c, WINDOW *w) switch (c) { case 'f': pmcstat_skiplink = !pmcstat_skiplink; - wprintw(w, "skip empty link %s", pmcstat_skiplink ? "on" : "off"); + wprintw(w, "skip empty link %s", + pmcstat_skiplink ? "on" : "off"); break; } |