From: "Steven Rostedt (VMware)" <rostedt@xxxxxxxxxxx> Just a simply clean up of the tep_parse_printk_formats(). Had done some debugging in this section, but found the bug elsewhere, but in the mean time, I had rearranged the variables, and removed the unneeded setting of "next" with NULL. Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> --- src/event-parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/event-parse.c b/src/event-parse.c index 8d1ac65..732987a 100644 --- a/src/event-parse.c +++ b/src/event-parse.c @@ -931,11 +931,11 @@ void tep_print_printk(struct tep_handle *tep) int tep_parse_printk_formats(struct tep_handle *tep, const char *buf) { unsigned long long addr; + char *addr_str; char *copy; char *printk; char *line; - char *next = NULL; - char *addr_str; + char *next; char *fmt; int ret = -1; -- 2.29.2