summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMasahiro Yamada <[email protected]>2014-02-04 10:58:31 +0900
committerAlbert ARIBAUD <[email protected]>2014-02-13 15:16:47 +0100
commite60cfd531a5066f95ece02e1e76fa2c6326761b3 (patch)
tree98d32bb7584d3d6a0c8f6212f2bd28e0154fdaa9 /tools
parent3cd534e4552770c1a8282c94832777a9ede75260 (diff)
relocate-rela: replace a magic number with sizeof(Elf64_Rela)
Signed-off-by: Masahiro Yamada <[email protected]> Cc: Scott Wood <[email protected]> Cc: David Feng <[email protected]> Acked-by: Scott Wood <[email protected]>
Diffstat (limited to 'tools')
-rw-r--r--tools/relocate-rela.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/relocate-rela.c b/tools/relocate-rela.c
index 93b4c3923e7..670b9fd73af 100644
--- a/tools/relocate-rela.c
+++ b/tools/relocate-rela.c
@@ -120,7 +120,7 @@ int main(int argc, char **argv)
}
if (rela_start > rela_end || rela_start < text_base ||
- (rela_end - rela_start) % 24) {
+ (rela_end - rela_start) % sizeof(Elf64_Rela)) {
fprintf(stderr, "%s: bad rela bounds\n", argv[0]);
return 3;
}