1
0
Fork 0

livepatch: add missing newline to error message

Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
hifive-unleashed-5.1
Josh Poimboeuf 2015-02-06 10:36:32 -06:00 committed by Jiri Kosina
parent 12cf89b550
commit f638f4dc08
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ static int klp_verify_vmlinux_symbol(const char *name, unsigned long addr)
if (kallsyms_on_each_symbol(klp_verify_callback, &args))
return 0;
pr_err("symbol '%s' not found at specified address 0x%016lx, kernel mismatch?",
pr_err("symbol '%s' not found at specified address 0x%016lx, kernel mismatch?\n",
name, addr);
return -EINVAL;
}