diff options
author | Marc Bertens <mbertens@xs4all.nl> | 2010-06-01 19:28:45 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2010-06-01 19:28:45 +0000 |
commit | e9d4bcc737f12dbcf121be5c50b4ff756dedcf4a (patch) | |
tree | 895331819740073605fc910fd2a52f9f1ba47d9f /src | |
parent | 80e914ffd59ea011b1d4ba1c1a1a1421dc2c6ecc (diff) | |
download | coreboot-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')
-rw-r--r-- | src/arch/i386/boot/pirq_routing.c | 2 |
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"); |