Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304911
b: refs/heads/master
c: 7706f96
h: refs/heads/master
i:
  304909: 6d3fc85
  304907: 7464431
  304903: 82f85b4
  304895: a375f8b
v: v3
  • Loading branch information
Namhyung Kim authored and Arnaldo Carvalho de Melo committed May 2, 2012
1 parent 1dedb29 commit 5b4ab88
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ca09b2e1b307724666577859eb460ac6d4c67330
refs/heads/master: 7706f966323f32f3ea13121b5918851432876ae5
2 changes: 1 addition & 1 deletion trunk/tools/perf/builtin-report.c
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ int cmd_report(int argc, const char **argv, const char *prefix __used)

if (strcmp(report.input_name, "-") != 0) {
if (report.use_gtk)
perf_gtk_setup_browser(argc, argv, true);
perf_gtk_setup_browser(true);
else
setup_browser(true);
} else {
Expand Down
5 changes: 2 additions & 3 deletions trunk/tools/perf/ui/gtk/browser.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@

#define MAX_COLUMNS 32

void perf_gtk_setup_browser(int argc, const char *argv[],
bool fallback_to_pager __used)
void perf_gtk_setup_browser(bool fallback_to_pager __used)
{
gtk_init(&argc, (char ***)&argv);
gtk_init(NULL, NULL);
}

void perf_gtk_exit_browser(bool wait_for_ok __used)
Expand Down
4 changes: 2 additions & 2 deletions trunk/tools/perf/util/cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ void exit_browser(bool wait_for_ok);
#endif

#ifdef NO_GTK2_SUPPORT
static inline void perf_gtk_setup_browser(int argc __used, const char *argv[] __used, bool fallback_to_pager)
static inline void perf_gtk_setup_browser(bool fallback_to_pager)
{
if (fallback_to_pager)
setup_pager();
}
static inline void perf_gtk_exit_browser(bool wait_for_ok __used) {}
#else
void perf_gtk_setup_browser(int argc, const char *argv[], bool fallback_to_pager);
void perf_gtk_setup_browser(bool fallback_to_pager);
void perf_gtk_exit_browser(bool wait_for_ok);
#endif

Expand Down

0 comments on commit 5b4ab88

Please sign in to comment.