summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2010-09-07 10:41:56 -0700
committerEric W. Biederman <ebiederm@xmission.com>2010-09-08 11:02:12 -0700
commitebeb4da62f8b51c63a46349b219a5605ee8d79bd (patch)
treee1698cba4d4b2361b7975347a86e8631c89f5a7d
parentdbe1163152ef6fca2a1bd22e11e219f58fd40c08 (diff)
i386 elf: Correct the probe error string
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
-rw-r--r--kexec/arch/i386/kexec-elf-x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kexec/arch/i386/kexec-elf-x86.c b/kexec/arch/i386/kexec-elf-x86.c
index 2e9cf9a..8bd5ef6 100644
--- a/kexec/arch/i386/kexec-elf-x86.c
+++ b/kexec/arch/i386/kexec-elf-x86.c
@@ -59,7 +59,7 @@ int elf_x86_probe(const char *buf, off_t len)
if ((ehdr.e_machine != EM_386) && (ehdr.e_machine != EM_486)) {
/* for a different architecture */
if (probe_debug) {
- fprintf(stderr, "Not x86_64 ELF executable\n");
+ fprintf(stderr, "Not i386 ELF executable\n");
}
result = -1;
goto out;