diff options
author | Ed Swierk <eswierk@arastra.com> | 2008-05-07 19:21:18 +0000 |
---|---|---|
committer | Ed Swierk <eswierk@arastra.com> | 2008-05-07 19:21:18 +0000 |
commit | 35993a231ecb4957d18719801cc4519b1df80d70 (patch) | |
tree | d3d3b8a9dc839cb88a3ba0a42d43c94421628bf3 /util/lbtdump | |
parent | 193378698e6cfbf774b2d9fff58c7a56880fe919 (diff) | |
download | coreboot-35993a231ecb4957d18719801cc4519b1df80d70.tar.gz coreboot-35993a231ecb4957d18719801cc4519b1df80d70.tar.bz2 coreboot-35993a231ecb4957d18719801cc4519b1df80d70.zip |
Fix a typo in lbtdump output (trivial).
Signed-off-by: Ed Swierk <eswierk@arastra.com>
Acked-by: Ed Swierk <eswierk@arastra.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3287 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/lbtdump')
-rw-r--r-- | util/lbtdump/lbtdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/lbtdump/lbtdump.c b/util/lbtdump/lbtdump.c index 235aa21f1571..2c08ec8dc996 100644 --- a/util/lbtdump/lbtdump.c +++ b/util/lbtdump/lbtdump.c @@ -72,7 +72,7 @@ struct lb_header *find_lb_table(void *base, unsigned long start, unsigned long e struct lb_record *recs = (struct lb_record *)(((char*)base) + addr + sizeof(*head)); if (memcmp(head->signature, "LBIO", 4) != 0) continue; - fprintf(stdout, "Found canidate at: %08lx-%08lx\n", + fprintf(stdout, "Found candidate at: %08lx-%08lx\n", addr, addr + head->table_bytes); if (head->header_bytes != sizeof(*head)) { fprintf(stderr, "Header bytes of %d are incorrect\n", |