diff options
Diffstat (limited to 'tools/perf/util/debug.c')
-rw-r--r-- | tools/perf/util/debug.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/perf/util/debug.c b/tools/perf/util/debug.c index c8d81b00089d..e5161e8f9915 100644 --- a/tools/perf/util/debug.c +++ b/tools/perf/util/debug.c | |||
@@ -46,6 +46,17 @@ int dump_printf(const char *fmt, ...) | |||
46 | return ret; | 46 | return ret; |
47 | } | 47 | } |
48 | 48 | ||
49 | #ifdef NO_NEWT_SUPPORT | ||
50 | void ui__warning(const char *format, ...) | ||
51 | { | ||
52 | va_list args; | ||
53 | |||
54 | va_start(args, format); | ||
55 | vfprintf(stderr, format, args); | ||
56 | va_end(args); | ||
57 | } | ||
58 | #endif | ||
59 | |||
49 | static int dump_printf_color(const char *fmt, const char *color, ...) | 60 | static int dump_printf_color(const char *fmt, const char *color, ...) |
50 | { | 61 | { |
51 | va_list args; | 62 | va_list args; |