summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorMarc Bertens <mbertens@xs4all.nl>2010-06-01 19:28:45 +0000
committerMyles Watson <mylesgw@gmail.com>2010-06-01 19:28:45 +0000
commite9d4bcc737f12dbcf121be5c50b4ff756dedcf4a (patch)
tree895331819740073605fc910fd2a52f9f1ba47d9f /src/arch
parent80e914ffd59ea011b1d4ba1c1a1a1421dc2c6ecc (diff)
downloadcoreboot-e9d4bcc737f12dbcf121be5c50b4ff756dedcf4a.tar.xz
Fix a format string to keep the compiler happy.
Signed-off-by: Marc Bertens <mbertens@xs4all.nl> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5604 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/i386/boot/pirq_routing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/boot/pirq_routing.c b/src/arch/i386/boot/pirq_routing.c
index 1956f2115f..ff929b4056 100644
--- a/src/arch/i386/boot/pirq_routing.c
+++ b/src/arch/i386/boot/pirq_routing.c
@@ -64,7 +64,7 @@ static int verify_copy_pirq_routing_table(unsigned long addr)
rt_curr = (uint8_t*)addr;
rt_orig = (uint8_t*)&intel_irq_routing_table;
- printk(BIOS_INFO, "Verifying copy of Interrupt Routing Table at 0x%08x... ", addr);
+ printk(BIOS_INFO, "Verifying copy of Interrupt Routing Table at 0x%08lx... ", addr);
for (i = 0; i < intel_irq_routing_table.size; i++) {
if (*(rt_curr + i) != *(rt_orig + i)) {
printk(BIOS_INFO, "failed\n");