From: Josh Poimboeuf Date: Fri, 6 Feb 2015 16:36:32 +0000 (-0600) Subject: livepatch: add missing newline to error message X-Git-Tag: firefly_0821_release~176^2~2373^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f638f4dc0880d515c807a67b8210885a4a4f18bb;p=firefly-linux-kernel-4.4.55.git livepatch: add missing newline to error message Signed-off-by: Josh Poimboeuf Signed-off-by: Jiri Kosina --- diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index 9adf86bfbcd5..ff7f47d026ac 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -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; }