aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org> 2024-03-31 10:30:06 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org> 2024-03-31 10:30:06 -0700
commit8d7e76846521440255a15180c6a7a170654fbb5a (patch)
treeab49d9b54e8657bf95ab6e0ebff13b042c5bcdf6
parentMerge tag 'x86_urgent_for_v6.9_rc2' of git://git.kernel.org/pub/scm/linux/ker... (diff)
parentobjtool: Fix compile failure when using the x32 compiler (diff)
downloadlinux-8d7e76846521440255a15180c6a7a170654fbb5a.tar.gz
linux-8d7e76846521440255a15180c6a7a170654fbb5a.tar.bz2
linux-8d7e76846521440255a15180c6a7a170654fbb5a.zip
Merge tag 'objtool_urgent_for_v6.9_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull objtool fix from Borislav Petkov: - Fix a format specifier build error in objtool during an x32 build * tag 'objtool_urgent_for_v6.9_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: objtool: Fix compile failure when using the x32 compiler
-rw-r--r--tools/objtool/check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index 0b10ad008668..0a33d9195b7a 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -585,7 +585,7 @@ static int add_dead_ends(struct objtool_file *file)
struct section *rsec;
struct reloc *reloc;
struct instruction *insn;
- unsigned long offset;
+ uint64_t offset;
/*
* Check for manually annotated dead ends.