projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7200199
)
perf hist: Fix hists__browse no-newt case
author
Frederic Weisbecker
<
[email protected]
>
Thu, 13 May 2010 17:22:58 +0000
(19:22 +0200)
committer
Arnaldo Carvalho de Melo
<
[email protected]
>
Thu, 13 May 2010 19:32:28 +0000
(16:32 -0300)
Fix mistake in a parameter type of the no-newt hists__browse()
version.
Fixes:
builtin-report.c: In function ‘__cmd_report’:
builtin-report.c:314: erreur: incompatible type for argument 1 of ‘hists__browse’
Signed-off-by: Frederic Weisbecker <
[email protected]
>
Cc: Ingo Molnar <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Cc: Arnaldo Carvalho de Melo <
[email protected]
>
Cc: Paul Mackerras <
[email protected]
>
LKML-Reference: <
1273771378
[email protected]
>
Signed-off-by: Arnaldo Carvalho de Melo <
[email protected]
>
tools/perf/util/hist.h
patch
|
blob
|
history
diff --git
a/tools/perf/util/hist.h
b/tools/perf/util/hist.h
index ed9c06734965f54d2224b8dce91aac217e7a0505..0b4c8df914bd0e5e67509ef34481236a50b2d045 100644
(file)
--- a/
tools/perf/util/hist.h
+++ b/
tools/perf/util/hist.h
@@
-78,7
+78,7
@@
void hists__filter_by_dso(struct hists *self, const struct dso *dso);
void hists__filter_by_thread(struct hists *self, const struct thread *thread);
#ifdef NO_NEWT_SUPPORT
-static inline int hists__browse(struct hists self __used,
+static inline int hists__browse(struct hists
*
self __used,
const char *helpline __used,
const char *input_name __used)
{