Skip to content

Commit

Permalink
livepatch: add missing newline to error message
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Josh Poimboeuf authored and Jiri Kosina committed Feb 6, 2015
1 parent 12cf89b commit f638f4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/livepatch/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f638f4d

Please sign in to comment.