diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2008-05-03 14:18:03 +0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-05-04 22:04:45 +0400 |
commit | 8bd1796dedd50abd7553afbe6113bd97cc88390f (patch) | |
tree | 39fd0c4a9b41d158f686298775ec978763e441b9 /arch | |
parent | ecb783eae1372d69a53d406e1bdba8284e4bafcc (diff) | |
download | linux-8bd1796dedd50abd7553afbe6113bd97cc88390f.tar.xz |
x86: relocs ELF handling - use SELFMAG instead of numeric constant
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Cc: akpm@linux-foundation.org
Cc: hpa@zytor.com
Cc: mingo@elte.hu
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/boot/compressed/relocs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/boot/compressed/relocs.c b/arch/x86/boot/compressed/relocs.c index d01ea42187e6..edaadea90aaf 100644 --- a/arch/x86/boot/compressed/relocs.c +++ b/arch/x86/boot/compressed/relocs.c @@ -191,7 +191,7 @@ static void read_ehdr(FILE *fp) die("Cannot read ELF header: %s\n", strerror(errno)); } - if (memcmp(ehdr.e_ident, ELFMAG, 4) != 0) { + if (memcmp(ehdr.e_ident, ELFMAG, SELFMAG) != 0) { die("No ELF magic\n"); } if (ehdr.e_ident[EI_CLASS] != ELFCLASS32) { |