aboutsummaryrefslogtreecommitdiff
path: root/src/boot
diff options
context:
space:
mode:
authorLuis Correia <luis.f.correia@gmail.com>2006-11-05 12:18:58 +0000
committerStefan Reinauer <stepan@openbios.org>2006-11-05 12:18:58 +0000
commita9e273593fd83ef78fd34d2e60a6606dada3b41c (patch)
treee63281b2183095418e4debc970f3c11a0632775d /src/boot
parent1549f2a557058000d65d913ffb8b60487bdc09ab (diff)
Fix a typo in elfboot.c. Closes #27
Signed-off-by: Luis Correia <luis.f.correia@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2488 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/boot')
-rw-r--r--src/boot/elfboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/elfboot.c b/src/boot/elfboot.c
index 583160b24a..c0bcd177da 100644
--- a/src/boot/elfboot.c
+++ b/src/boot/elfboot.c
@@ -630,7 +630,7 @@ int elfboot(struct lb_memory *mem)
printk_spew("NO header at %d\n", i);
continue;
}
- printk_debug("Found ELF candiate at offset %d\n", i);
+ printk_debug("Found ELF candidate at offset %d\n", i);
/* Sanity check the elf header */
if ((ehdr->e_type == ET_EXEC) &&
elf_check_arch(ehdr) &&