diff options
author | Josh Poimboeuf <jpoimboe@redhat.com> | 2015-02-06 10:36:32 -0600 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-02-06 21:28:35 +0100 |
commit | f638f4dc0880d515c807a67b8210885a4a4f18bb (patch) | |
tree | e8af973f221f09593c8ff4c877d0d5b4813cd2a8 /kernel | |
parent | 12cf89b550d13eb7cb86ef182bd6c04345a33a1f (diff) | |
download | op-kernel-dev-f638f4dc0880d515c807a67b8210885a4a4f18bb.zip op-kernel-dev-f638f4dc0880d515c807a67b8210885a4a4f18bb.tar.gz |
livepatch: add missing newline to error message
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/livepatch/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index 9adf86b..ff7f47d 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; } |