kmod/core: minor style fix

For compatibility with checkpatch
This commit is contained in:
Josh Poimboeuf 2014-05-05 13:40:42 -05:00
parent 66cab1d4a2
commit ab112cce2d
1 changed files with 2 additions and 1 deletions

View File

@ -154,7 +154,8 @@ static inline int kpatch_compare_addresses(unsigned long stack_addr,
{
if (stack_addr >= func_addr && stack_addr < func_addr + func_size) {
/* TODO: use kallsyms to print symbol name */
pr_err("activeness safety check failed for function at address 0x%lx\n", stack_addr);
pr_err("activeness safety check failed for function at address 0x%lx\n",
stack_addr);
return -EBUSY;
}
return 0;