diff options
Diffstat (limited to 'tools/perf/util/debug.c')
| -rw-r--r-- | tools/perf/util/debug.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/perf/util/debug.c b/tools/perf/util/debug.c index 155749d7435..26817daa296 100644 --- a/tools/perf/util/debug.c +++ b/tools/perf/util/debug.c @@ -47,19 +47,20 @@ int dump_printf(const char *fmt, ...)  }  #ifdef NO_NEWT_SUPPORT -void ui__warning(const char *format, ...) +int ui__warning(const char *format, ...)  {  	va_list args;  	va_start(args, format);  	vfprintf(stderr, format, args);  	va_end(args); +	return 0;  }  #endif -void ui__warning_paranoid(void) +int ui__error_paranoid(void)  { -	ui__warning("Permission error - are you root?\n" +	return ui__error("Permission error - are you root?\n"  		    "Consider tweaking /proc/sys/kernel/perf_event_paranoid:\n"  		    " -1 - Not paranoid at all\n"  		    "  0 - Disallow raw tracepoint access for unpriv\n"  |