diff options
Diffstat (limited to 'tools/perf/util/trace-event-parse.c')
| -rw-r--r-- | tools/perf/util/trace-event-parse.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/tools/perf/util/trace-event-parse.c b/tools/perf/util/trace-event-parse.c index 746bbee645d9..e0a6e9a6a053 100644 --- a/tools/perf/util/trace-event-parse.c +++ b/tools/perf/util/trace-event-parse.c @@ -24,7 +24,7 @@  #include <errno.h>  #include "../perf.h" -#include "util.h" +#include "debug.h"  #include "trace-event.h"  #include "sane_ctype.h" @@ -150,7 +150,7 @@ void parse_ftrace_printk(struct pevent *pevent,  	while (line) {  		addr_str = strtok_r(line, ":", &fmt);  		if (!addr_str) { -			warning("printk format with empty entry"); +			pr_warning("printk format with empty entry");  			break;  		}  		addr = strtoull(addr_str, NULL, 16); |