diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-02-10 03:02:05 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-02-10 03:02:05 +0000 |
commit | 94e340b22aa97821333b26dfcd29ac692ffc961e (patch) | |
tree | 5d873da3074b09dc6b86c66de5964d1babec5475 /src/boot | |
parent | cd7e9b55dd9887047555e99ec926a1cf762f52de (diff) |
Change 0x%p to %p. Thanks Stefan for catching the one I introduced in 3931.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3933 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/boot')
-rw-r--r-- | src/boot/elfboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/elfboot.c b/src/boot/elfboot.c index 7caa4673fa..33baee3fe9 100644 --- a/src/boot/elfboot.c +++ b/src/boot/elfboot.c @@ -590,7 +590,7 @@ int elfload(struct lb_memory *mem, /* Reset to booting from this image as late as possible */ boot_successful(); - printk_debug("Jumping to boot code at 0x%p\n", entry); + printk_debug("Jumping to boot code at %p\n", entry); post_code(0xfe); /* Jump to kernel */ |