rmodule: Correct the typecast with proper parenthesis
BUG=None BRANCH=None TEST=Compiles successfully Change-Id: I67801f96ec63a3150263ce3d6a4a7556092c6be5 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://chromium-review.googlesource.com/209505 Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Commit-Queue: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
8553fae710
commit
71cd62740e
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ static int rmodule_relocate(const struct rmodule *module)
|
|||
adjust_loc = rmodule_load_addr(module, *reloc);
|
||||
printk(PK_ADJ_LEVEL, "Adjusting %p: 0x%08lx -> 0x%08lx\n",
|
||||
adjust_loc, (unsigned long) *adjust_loc,
|
||||
(unsigned long) *adjust_loc + adjustment);
|
||||
(unsigned long) (*adjust_loc + adjustment));
|
||||
*adjust_loc += adjustment;
|
||||
|
||||
reloc++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue